]> git.ipfire.org Git - thirdparty/git.git/blame - git
Clean up different special *HEAD handling
[thirdparty/git.git] / git
CommitLineData
e764b8e8 1#!/bin/sh
fc865468 2cmd="$1"
e764b8e8 3shift
fc865468
LT
4if which git-$cmd-script >& /dev/null
5then
6 exec git-$cmd-script "$@"
7fi
8
9if which git-$cmd >& /dev/null
10then
11 exec git-$cmd "$@"
12fi
13
14alternatives=($(echo $PATH | tr ':' '\n' | while read i; do ls $i/git-*-script 2> /dev/null; done))
15
16echo Git command "'$cmd'" not found. Try one of
17for i in "${alternatives[@]}"; do
18 echo $i | sed 's:^.*/git-: :' | sed 's:-script$::'
19done | sort | uniq