Add silly "git-whatchanged" script.

It's a one-liner, but it's useful as documentation if nothing else.
This commit is contained in:
Linus Torvalds 2005-05-17 11:47:13 -07:00
parent 14cd1ff396
commit 02481aec2a
2 changed files with 3 additions and 1 deletions

View file

@ -19,7 +19,7 @@ AR=ar
INSTALL=install
SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
git-pull-script git-tag-script git-resolve-script
git-pull-script git-tag-script git-resolve-script git-whatchanged
PROG= git-update-cache git-diff-files git-init-db git-write-tree \
git-read-tree git-commit-tree git-cat-file git-fsck-cache \

2
git-whatchanged Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
git-rev-list HEAD | git-diff-tree --stdin -v -r "$@"