Answers for "git commit all the changes to another local branch"

5

git how to commit changes to another branch

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

git commit changes to different branch

git stash
git checkout other-branch
git stash pop
Posted by: Guest on December-26-2021

Code answers related to "git commit all the changes to another local branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language