Answers for "git pull remote branch to local branch with different name github desktop"

2

git checkout branch on different remote

# First fetch all new_remote refs
git fetch new_remote
# Then
git checkout -b <branchname> --track new_remote/<branchname>
Posted by: Guest on March-31-2020
5

how to pull remote branch into local branch

git fetch origin <branch-name>
Posted by: Guest on March-25-2021

Code answers related to "git pull remote branch to local branch with different name github desktop"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language