how do i move changes from one branch to another code example
Example 1: move update from one branch to another git
git checkout -b newbranchname
Example 2: move update from one branch to another git
git stash pop
git checkout -b newbranchname
git stash pop