I started some work on a new feature and after coding for a bit, I decided this feature should be on its own branch.

How do I move the existing uncommitted changes to a new branch and reset my current one?

I want to be sure that I can reset my current branch while preserving work on the uncompleted feature.

link|improve this question

feedback

1 Answer

up vote 189 down vote accepted

Use the following:

git checkout -b <new-branch>

This will leave your current branch as is, create and checkout a new branch and keep all your changes. You can then make a commit with

git add <files>

and commit to your new branch with:

git commit

The changes in the working directory and changes staged in index do not belong to a branch. This changes where those changes would end in.

You don't reset your original branch, it stays as it is. The last commit on <old-branch> will still be the same. Therefore you checkout -b and then commit.

link|improve this answer
Just to make sure, I need to commit the unfinished feature BEFORE I reset my original branch? Or will those uncommitted files be preserved regardless of committing? – thedeeno Sep 8 '09 at 16:02
oh yeah. duh. thanks. – thedeeno Sep 8 '09 at 16:09
13  
FYI: changes in working directory and changes staged in index do not belong to a branch. git checkout -b <new branch> changes where those changes would end in. – Jakub Narębski Sep 8 '09 at 17:00
9  
If you already have a branch and want to move your changes to the existing branch, checkout stackoverflow.com/questions/556923/… – Chirantan Jan 25 '11 at 8:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.