0
How do I get changes from current branch copied to another branch without having current branch committed?
Git related Query.
2 ответов
+ 2
Just need to
git checkout another-branch
git add -A
git commit -m "msg"
+ 1
Stash your uncommitted changes, check out the other branch and unstash your changes. And hope that you don't have any conflicts