Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sometimes it happens that I make some changes in my working directory and I realize that these changes should be committed in a branch different to the current one. This usually happens when I want to try out new things or do some testing and I forget to create a new branch beforehand, but I don't want to commit dirty code to the master branch.

So, how can I make that uncommitted changes (or changes stored in the index) be committed to a different branch than the current one?

share|improve this question

3 Answers

up vote 85 down vote accepted

The two current answers (checking out the other branch, then committing to it) only work if the checkout is possible given the local modifications. If not, you're in the most common use case for git stash:

git stash
git checkout other-branch
git stash pop

The first stash hides away your changes (basically making a temporary commit), and the second re-applies them. This lets git use its merge capabilities.

share|improve this answer
Great answer!.. – beryllium Apr 4 at 10:01
When you said: Checking out the branch and then committing would only work if the checkout is possible given the local modifications. What do you mean? Would you mind giving/discussing one simple example when that would fail? – user815423426 Apr 11 at 15:04
@user815423426 If you have uncommitted changes, you can check out another branch if and only if the set of files you've changed and the set of files which differ between the two branches are disjoint. That is, if you've modified file A, you can check out another branch only if file A is the same in both branches. – Jefromi Apr 11 at 15:06
Thanks! When you said A is the same in both branches, you mean A before my changes (i.e. A in the HEAD of each branch). Correct? – user815423426 Apr 11 at 15:12

You can just create a new branch and switch onto it. Commit your changes then:

git branch dirty
git checkout dirty
// And your commit follows ...

Alternatively, you can also checkout an existing branch (just git checkout <name>). But only, if there are no collisions (the base of all edited files is the same as in your current branch). Otherwise you will get a message.

share|improve this answer
4  
Note that in the case of switching to existing divergent branch you can use -m option to tell git to try to merge changes, i.e. git checkout -m <name> – Jakub NarÄ™bski Jun 1 '10 at 8:40
1  
@Jefromi's answer is better in pretty much every case I think. – Alexander Bird Jun 4 '11 at 14:09
Shorter version: git checkout -b dirty – user1338062 Mar 4 at 7:03
What do you mean by "the base of all edited files is the same as in your current branch" ? When would git checkout <name> be a problem if you have uncommitted changes? – user815423426 Apr 11 at 14:58
@user815423426: If you edit a file, but do not commit it, you won't be able to checkout a branch, where the file is not committed (or was deleted, previously). Git will abort: error: Your local changes to the following files would be overwritten by checkout: ... – tanascius Apr 12 at 11:59
  1. git checkout my_other_branch
  2. git add my_file my_other_file
  3. git commit -m

And provide your commit message.

share|improve this answer
you may want to write what co and ci is ... though one can guess it (checkout, commit) ^^ – tanascius May 31 '10 at 15:30
@tanascius Good suggestion, and done. I've been using the aliases so long I forget they aren't the default. – Hank Gay Jun 1 '10 at 10:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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