Answers for "want my local branch merge with another 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
0

merge branch from another repo

$ git switch -c baz
Posted by: Guest on December-05-2021

Code answers related to "want my local branch merge with another remote branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language