On Wed, Aug 31, 2011 at 04:55:03PM -0700, Hilco Wijbenga wrote: > hilco@centaur ~/workspaces/project-next project-next (next $)$ git rebase master > [...] > <stdin>:721810: trailing whitespace. > [...] > Note the trailing whitespace warnings. How do I find out which file(s) > generated these warnings? Would it be possible to add the file name > causing the warnings to be output? By default? (Using --verbose > doesn't seem to make any difference where the whitespace warnings are > concerned.) You can see any whitespace warnings in your repository (and in which commit they were introduced) by doing something like: git log --oneline --check The "--check" option is just another diff output format, so you use it with "log" or "diff". For example, if you want to see just whitespace problems that still exist in your current tree, you can diff against the empty tree with --check, like: git diff --check 4b825dc642cb6eb9a060e54bf8d69288fbee4904 where "4b825dc..." is the well-known sha1 of an empty tree[1]. > Furthermore, why didn't I get these or similar warnings when I > committed/pushed that particular commit ("Use static WAR for SWF files > and assets.")? I did just find "[core] whitespace = trailing-space" > which I will add to my .gitconfig, I suppose. So I guess what I really > mean to ask is, why do rebase (and merge?) behave differently from > commit? Because these warnings are only triggered by default when applying patches. And the idea of rebase is to apply patches from one place to another. I thought we squelched whitespace warnings for rebase these days (since they are somewhat pointless; you are moving around your own commits, not applying commits from some other contributor), but maybe I am misremembering. Or maybe you have an older version of git. Which version are you using? If you want to enforce whitespace checks during commit or push, you can do so with a hook. The sample "pre-commit" hook, for example, uses "diff --check" for just this purpose. See "git help hooks" for more information. -Peff [1] If you don't remember the empty tree sha1, you can always derive it with: git hash-object -t tree /dev/null -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html