Answers for "how to merge remote branch"

1

how to merge remote branch

//make sure you're on the local branch, then:

git pull origin YourRemoteBranch

//which is the same as:

git fetch origin YourRemoteBranch
git merge origin/YourRemoteBranch
Posted by: Guest on June-15-2020

Code answers related to "how to merge remote branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language