projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
452ce29
)
[PATCH] Simplify git script
author
David_Kågedal
<davidk@lysator.liu.se>
Wed, 7 Sep 2005 07:29:20 +0000
(09:29 +0200)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 7 Sep 2005 21:29:50 +0000
(14:29 -0700)
The code for listing the available subcommands was unnecessarily
complex.
Signed-off-by: David Kågedal <davidk@lysator.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git
patch
|
blob
|
history
diff --git
a/git
b/git
index
0d8b382
..
476aeec
100755
(executable)
--- a/
git
+++ b/
git
@@
-17,6
+17,4
@@
else
echo " git commands are:"
fi
-alternatives=$(cd $path &&
- ls git-*-script | sed -e 's/git-//' -e 's/-script//')
-echo $alternatives | fmt | sed 's/^/ /'
+ls $path | sed -ne 's/^git-\(.*\)-script/ \1/p' | fmt