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

I can't for the life of me find any decent explanation of the "[file]: needs update" message that git sometimes spits out from time to time. Even the official git FAQ has explaining this marked as a TODO. If someone could explain A) what it means; and B) how to fix it, I would be extremely grateful.

share|improve this question
1  
Good question, as you said even the GitFaq does not have an answer: git.wiki.kernel.org/index.php/… – Justin Ethier Apr 18 '10 at 3:18
1  
You can see stackoverflow.com/questions/5367734/… – Giger Sep 23 '12 at 16:25

2 Answers

up vote 45 down vote accepted

It means you're trying to merge changes from somewhere, but the changes include modifications to a file that's dirty (currently modified in your working tree). You need to commit your outstanding changes, or stash them, pull/rebase/merge/whatever you're doing to update, and unstash

share|improve this answer
2  
It's not actually the pull - it's the merge that's part of the pull. You'll see the same error if you try to merge a local branch with the same problem, and I think other mergey operations (apply, stash apply...) print similar errors if not the same one. – Jefromi Apr 18 '10 at 4:14
Ah, good call. Fixed – Michael Mrozek Apr 18 '10 at 4:20
Ah, thanks. That actually makes sense. I guess I need to make sure I commit changes before checkout out a different branch. – rofrankel Apr 19 '10 at 17:37
3  
In case it helps search results, I also ran into this issue trying to do a git svn rebase with a dirty working copy. Stash save, rebase, stash pop, and all was right with the world. – Adam Tuttle Feb 2 '11 at 15:24
The file itself may not be changed - even changing file attributes (like permissions) can cause this. – chiborg Aug 17 '11 at 9:48

Like the answer to the linked other question says, the message simply means that you have outstanding changes. You also get this e.g. if you stage some changes with git add, then change your mind and do git reset HEAD file with the intention of starting over.

share|improve this answer

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.