aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-01 09:13:26 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-01 09:13:26 -0700
commite764b8e8b3c50b131be825532ba26fa346d6586e (patch)
treeee6db01d435fb6feda9744db7db658e387e5df2f /Makefile
parent9d97aa6466fe03db504291e1cef3ac4c0c5160a9 (diff)
downloadgit-e764b8e8b3c50b131be825532ba26fa346d6586e.tar.gz
git-e764b8e8b3c50b131be825532ba26fa346d6586e.tar.xz
Add "git" and "git-log-script" helper scripts.
The "git" script is just shorthand: "git xyz <args>" will just execute "git-xyz-script <args>", which is useful for people used to the CVS naming convention. So "git log" will run the new git-log-script, which is just a wrapper around the new pretty-printing git-rev-list. Cheesy.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a320a8814..a5e7552e1 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,10 @@ CC=gcc
AR=ar
INSTALL=install
-SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
+SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
git-pull-script git-tag-script git-resolve-script git-whatchanged \
- git-deltafy-script git-fetch-script git-status-script git-commit-script
+ git-deltafy-script git-fetch-script git-status-script git-commit-script \
+ git-log-script
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 \