Answers for "how to pull from a branch in git"

8

how to pull from a particular branch in git

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

how a to pull a branch in git

$ git pull origin other-branch
Posted by: Guest on September-29-2020
-1

how to pull from a branch in git

git pull origin other-branch
Posted by: Guest on October-27-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
0

pull from a brrrnch in git

$ git fetch origin other-branch
Posted by: Guest on December-24-2020
1

git pull

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

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language