Answers for "pull latest code from git branch"

1

git pull everything from development branch to feature branch

#!/bin/bash
git checkout develop
git pull
git checkout feature/$1
git merge develop 
git push
Posted by: Guest on June-03-2020
0

pull down a branch locally

git fetch origin
git checkout frontend
Posted by: Guest on June-08-2021

Code answers related to "pull latest code from git branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language