Published
- 1 min read
how to move unstaged changes to different branch
The solution for this is noted below
how to move unstaged changes to different branch
Solution
git stash
git checkout correct-branch
git stash pop
Try other methods by searching on the site. That is if this doesn’t work