Answers for "git how to pull from a branch"

11

how to pull from a particular branch in git

git pull origin <branch>
Posted by: Guest on June-30-2020
0

Git pull on branch

$ git checkout my_feature   # Just making sure you're currently on the right branch!  
$ git pull origin my_feature   # Pulling what your coworkers have done so far.
Posted by: Guest on August-20-2021
1

git pull

git checkout new_feature
git pull <remote repo>
Posted by: Guest on March-20-2020

Code answers related to "git how to pull from a branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language