Answers for "copy git commit to another branch"

5

commit to another branch

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

copy commit in another branch

git checkout branch-name
git cherry-pick xyz abc qwe
git push origin branch-name
Posted by: Guest on September-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language