aboutsummaryrefslogtreecommitdiffstats
path: root/git
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-14 11:01:49 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-14 11:01:49 -0700
commitfc865468d88d45e76e21a9db2445a4b970f7423b (patch)
tree03a0b1c4ade23ce4b69944f3a0b47784075564e4 /git
parent96069cf03aca672e93d862813f2e7f05c1c7ac72 (diff)
downloadgit-fc865468d88d45e76e21a9db2445a4b970f7423b.tar.gz
Make 'git' script be a bit more helpful on unrecognized commands
Diffstat (limited to 'git')
-rwxr-xr-xgit19
1 files changed, 17 insertions, 2 deletions
diff --git a/git b/git
index c201c60ae7..9f511956ae 100755
--- a/git
+++ b/git
@@ -1,4 +1,19 @@
#!/bin/sh
-cmd="git-$1-script"
+cmd="$1"
shift
-exec $cmd "$@"
+if which git-$cmd-script >& /dev/null
+then
+ exec git-$cmd-script "$@"
+fi
+
+if which git-$cmd >& /dev/null
+then
+ exec git-$cmd "$@"
+fi
+
+alternatives=($(echo $PATH | tr ':' '\n' | while read i; do ls $i/git-*-script 2> /dev/null; done))
+
+echo Git command "'$cmd'" not found. Try one of
+for i in "${alternatives[@]}"; do
+ echo $i | sed 's:^.*/git-: :' | sed 's:-script$::'
+done | sort | uniq