Answers for "stash changes before checkout from the branch"

0

stash changes before checkout from the branch

# Assuming you are on dev branch
$ git stash save "Code in dev branch to be included in feature branch"
$ git checkout feature
$ git stash pop
Posted by: Guest on May-11-2021

Code answers related to "stash changes before checkout from the branch"

Browse Popular Code Answers by Language