• 0

git stash changes and apply to new branch

Save current changes to the stash

git stash
Checkout the branch where you want to apply the changes
git checkout -b <branch_name>
See the files which are modified in the stash.
git stash show
Print the stashed changes.
git stash show -p
Bring stashed changes to staged in the current branch.
git stash pop
To verify the changes are stagged to the current branch
git status
Enjoy !!!