Answers for "Git pull on branch"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language