How to make git merge handle uncommitted changes to my working tree? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:37:01Z http://stackoverflow.com/feeds/question/813822 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/813822/how-to-make-git-merge-handle-uncommitted-changes-to-my-working-tree 1 How to make git merge handle uncommitted changes to my working tree? Jeremy Huiskamp 2009-05-02T00:33:38Z 2009-05-02T01:45:08Z <p>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:</p> <pre><code>$ git merge origin/master Updating 1b8c5c6..eb44c23 error: Entry 'blah.java' not uptodate. Cannot merge. </code></pre> <p>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.</p> <p>The quickest way I have found to do this in git is:</p> <pre><code>$ git stash $ git merge origin/master $ git stash pop </code></pre> <p>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?</p> http://stackoverflow.com/questions/813822/how-to-make-git-merge-handle-uncommitted-changes-to-my-working-tree/813827#813827 2 Answer by Norman Ramsey for How to make git merge handle uncommitted changes to my working tree? Norman Ramsey 2009-05-02T00:35:41Z 2009-05-02T00:35:41Z <p>As far as I can tell, the best you can do is what you already have with <code>git stash</code>. I too find it strange that merge wants to deal only with clean trees.</p> http://stackoverflow.com/questions/813822/how-to-make-git-merge-handle-uncommitted-changes-to-my-working-tree/813958#813958 4 Answer by Dustin for How to make git merge handle uncommitted changes to my working tree? Dustin 2009-05-02T01:45:08Z 2009-05-02T01:45:08Z <p>Forget everything you ever learned from subversion.</p> <p>Always commit before introducing external changes.</p> <p>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?</p> <p>If you commit, you can. If you don't, you're just going to suffer.</p> <p>Remember: What you commit doesn't <em>have</em> to be what you push, but what you don't commit you can easily lose.</p> <p>Just do the safe and easy thing and commit early and commit often.</p>