summaryrefslogtreecommitdiff
path: root/git-diff-script
Commit message (Collapse)AuthorAgeFilesLines
* Use "-M" instead of "-C" for "git diff" and "git status"Linus Torvalds2005-06-171-3/+3
| | | | | | | The "C" in "-C" may stand for "Cool", but it's also pretty slow, since right now it leaves all unmodified files to be tested even if there are no new files at all. That just ends up being unacceptably slow for big projects, especially if it's not all in the cache.
* Don't use -C in "git diff"Linus Torvalds2005-06-171-3/+3
| | | | | Right now it confuses at least git-diff-files, since it leaves all the files (whether changed or not) in the diff queue.
* Trivial git script fixupsLinus Torvalds2005-06-141-3/+3
| | | | | | | Fix permissions, and add trivial "reset" and "add" scripts. The "reset" script just resets the index back to head, while the "add" script is just a crutch for people used to do "cvs add".
* Add "git diff" scriptLinus Torvalds2005-06-131-0/+16
It's a simple helper that depending on the arguments will either use git-diff-files, git-diff-cache or git-diff-tree.