Answers for "git pull remote branchs"

11

pull remote branches

git fetch origin
git checkout --track origin/<remote_branch_name>
Posted by: Guest on May-25-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