git i have local changes that I want to move to a different branch code example
Example 1: how to move unstaged changes to different branch
git stash
git checkout -b new-branch
git stash pop
Example 2: git transfer changes to another branch
git stash
git checkout -b new-branch
git stash pop