hi all,
After a pull, git status tells me that I have changed a 16Mb xml file.
I have not touched this file; but its possible that EOL issues cause git's confusion (though I think not as I have autocrlf = input ).
Yet I write because I cannot get rid of this thing.
I have tried each of the following :
- git reset --hard HEAD
- git checkout -- derived/workflow/xml/definitions.xml
- git stash save
After each of these, git status tells me :
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: derived/workflow/xml/definitions.xml
This is a problem because I can't "stash pop" afterward, (even immediately after #3 above, after doing a 'git stash save')
Environment
- Windows XP
- Cygwin Git 1.7.1
Some questions
- Is git failing silently due to this large file size? (Earlier I briefly saw git fail on a memory issue)
- How do I work around this problem?
Thanks