Answers for "update existing branch with latest changes from other branch"

5

git commit current changes to existing branch

git stash
git checkout other-branch
git stash pop
Posted by: Guest on February-28-2020
0

git update another branch

git fetch origin master:master
Posted by: Guest on February-22-2021

Code answers related to "update existing branch with latest changes from other branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language