Answers for "git merge commit to a remote branch"

3

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 "git merge commit to a remote branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language