Moving uncommitted changes to a new branch [duplicate]

Possible Duplicate:
Move existing, uncommited work to a new branch in Git

I have some code in branch ABC.

After making some changes to it, i'd like to move all those uncommitted changes into a commit on a new branch ABC_1.

How can this be done please?

0

3 Answers

Just create a new branch:

git checkout -b newBranch 

And if you do git status you'll see that the state of the code hasn't changed and you can commit it to the new branch.

3

Just move to the new branch. The uncommited changes get carried over.

git checkout -b ABC_1 git commit -m <message> 

Just create a new branch with git checkout -b ABC_1; your uncommitted changes will be kept, and you then commit them to that branch.

You Might Also Like