Answers for "create a new branch and move changes to it"

1

git bring your changes to a new branch

git checkout -b <new-branch>
// This will leave your current branch as it is, create and checkout a new branch and keep all your changes. You can then stage changes in files to commit with:

git add <files>
//and commit to your new branch with:

git commit -m "<Brief description of this commit>"
Posted by: Guest on March-31-2020
0

git move change from master to new branch

git stash						//you can stash the changes in the master branch .
git checkout -b newbranchname	//then checkout the branch
git stash pop					//and pop the changes here
Posted by: Guest on November-22-2021

Code answers related to "create a new branch and move changes to it"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language