vote up 1 vote down star

A co-worker and I are both working on the master branch at the moment. I have some code in my working tree that I don't want to commit (debugging statements and the like). Now if he commits changes to some of those same files, I can't merge them:

$ git merge origin/master
Updating 1b8c5c6..eb44c23
error: Entry 'blah.java' not uptodate. Cannot merge.

Coming from a subversion background, I'm used to having my working tree automatically merged when I pull changes from the repository and if there are conflicts, I resolve them manually.

The quickest way I have found to do this in git is:

$ git stash
$ git merge origin/master
$ git stash pop

Essentially, removing my uncommitted changes, doing the merge and then re-applying the changes. How can I tell merge to automatically merge my working tree with the changes I'm trying to pull in?

flag
2  
What if you have merge conflicts? What if you would have merge conflicst in dirty files (files you modified)? See also "Fun with keeping local changes around" at Junio C Hamano (git maintainer) blog: gitster.livejournal.com/29060.html – Jakub NarÄ™bski May 2 at 18:01
Thanks for the link. Again though, the vast majority of the time, I expect either no conflicts or very minor ones which I don't mind fixing by hand. I run the same risk of conflict if I commit my dirty files anyway, except then I have to go to the trouble of uncommitting them after. – Jeremy Huiskamp May 2 at 18:28

2 Answers

vote up 2 vote down check

As far as I can tell, the best you can do is what you already have with git stash. I too find it strange that merge wants to deal only with clean trees.

link|flag
1  
I shall put this in my .bashrc: gm() { git stash; git merge $@; git stash pop } And then wait to see how long it takes to bite me in the ass somehow. – Jeremy Huiskamp May 2 at 6:37
vote up 4 vote down

Forget everything you ever learned from subversion.

Always commit before introducing external changes.

Imagine you had a mostly-working tree -- maybe not perfect, but you're making some progress. Then you go to do a merge and the code you're bringing in just wreaked havoc (was buggy itself, too many conflicts to deal with, etc...). Wouldn't it be nice if you could just undo that?

If you commit, you can. If you don't, you're just going to suffer.

Remember: What you commit doesn't have to be what you push, but what you don't commit you can easily lose.

Just do the safe and easy thing and commit early and commit often.

link|flag
So I commit my debugging statements and then merge. Then I do some real changes that I want to push. How do I get my debugging statements out, now that stuff I want to commit is dependent on that commit? – Jeremy Huiskamp May 2 at 1:55
You can always revert a previous commit using the "revert" command – 1800 INFORMATION May 2 at 2:30
I will consider this strategy for when our code actually gets crazy enough that I have to worry about undoing it. However, for now, I believe the stash version is still reversible. I can re-stash, kill the merge commit and pop the stash again on whatever other commit I want. I don't mind forgetting what I've learned about subversion, but it blows when it does something much better than git, particularly when git is supposed to be the one that's so good at merging. – Jeremy Huiskamp May 2 at 6:34
1  
You could use "rebase -i" to reorder the commits and move the introduction of the debugging statements to the end. – araqnid May 2 at 10:49

Your Answer

Get an OpenID
or

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