- Dealing with whitespace in git diff-tree - I wanted to use a git post-commit hook to perform an action on every file that had been committed. A git command can be used to list files committed (from a question on stackoverflow): git diff-tree -r --name-only --no-commit-id HEAD However, this d...

