Re: Best way to check for a "dirty" working tree?
From: Dirk Süsserott <hidden>
Date: 2016-06-15 22:51:28
Hi Jonathan, Am 14.06.2011 00:22 schrieb Jonathan Nieder:
Hi Dirk, Dirk Süsserott wrote:quoted
I have a script which moves data from somewhere to my local repo and then checks it in, like so: ----------- mv /tmp/foo.bar . git commit -am "Updated foo.bar at $timestamp" ----------- However, before overwriting "foo.bar" in my working directory, I'd like to check whether my working tree is dirty (at least "foo.bar").Interesting example. Sensible, as long as you limit the commit to foo.bar (i.e., "git commit -m ... --only foo.bar")!
Uhh, nice hint. I didn't know that git-commit accepts a path, too. That's safer. However, in my particular case the working tree is either clean or exactly the file in question has changed. If sth. else changes (e.g. my commit-script) I do that in a separate "transaction".
Now, a word of warning. One aspect of this "do not second-guess the caller" behavior is that low-level commands like "git diff-index" blindly trust stat() information in the index, rather than going to re-read a seemingly modified file and updating the index if the content is not changed. You can see this by running "touch foo.bar"; "git diff-index" will report the file as changed, until you use "git update-index" to refresh the stat information: git update-index --refresh --unmerged -q >/dev/null || : if ! git diff-index --quiet HEAD -- foo.bar; then dirty=1 fi Alas, this doesn't seem to be documented anywhere (except for the gitcore-tutorial(7))! It ought to be.
Hmm, it MUST be documented somewhere, because I have several scripts that use "update-index --refresh" to get rid of what I call "phantom changes": sometimes I transfer (scp) files from a remote machine to the local tree. The set of files is already known to Git, so my first guess was that Gitk would only show the "real" diff, but it actually showed *all* transferred files as changed. After running "git status" Gitk does it right and shows only content's diff. Surprisingly, "git status" seems to be a read/write operation and does "update-index --refresh" in the background. After some research I learned about "update-index --refresh" and use it frequently for scp'ed files. Unfortunately, I cannot remember *where* I learned about it.
Hope that helps, Jonathan
That helped a lot. Thank you, Dirk