git.99rst.org
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
14cd1ff
)
Add silly "git-whatchanged" script.
author
Linus Torvalds
<redacted>
Tue, 17 May 2005 18:47:13 +0000
(11:47 -0700)
committer
Linus Torvalds
<redacted>
Tue, 17 May 2005 18:47:13 +0000
(11:47 -0700)
It's a one-liner, but it's useful as documentation if nothing else.
Makefile
patch
|
blob
|
history
git-whatchanged
[new file with mode: 0755]
patch
|
blob
diff --git
a/Makefile
b/Makefile
index 8f2497cd997257db25953672f809eb81daa00eaf..cde27275fad8103084d7ed2d08d246ba4ce6eb9c 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-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 \
diff --git a/git-whatchanged
b/git-whatchanged
new file mode 100755
(executable)
index 0000000..
542067d
--- /dev/null
+++ b/
git-whatchanged
@@ -0,0
+1,2
@@
+#!/bin/sh
+git-rev-list HEAD | git-diff-tree --stdin -v -r "$@"
git clone https://git.99rst.org/PROJECT