https://github.com/git/git
Revision c965c029330b1f81cc107c5d829e7fd79c61d8ea authored by Junio C Hamano on 13 April 2009, 00:05:55 UTC, committed by Junio C Hamano on 13 April 2009, 00:05:55 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 54a4749
Raw File
Tip revision: c965c029330b1f81cc107c5d829e7fd79c61d8ea authored by Junio C Hamano on 13 April 2009, 00:05:55 UTC
GIT 1.6.3-rc0
Tip revision: c965c02
fixup-builtins
#!/bin/sh
while [ "$1" ]
do
	if [ "$1" != "git-sh-setup" -a "$1" != "git-parse-remote" -a "$1" != "git-svn" ]; then
		old="$1"
		new=$(echo "$1" | sed 's/git-/git /')
		echo "Converting '$old' to '$new'"
		sed -i "s/\\<$old\\>/$new/g" $(git ls-files '*.sh')
	fi
	shift
done

sed -i 's/git merge-one-file/git-merge-one-file/g
s/git rebase-todo/git-rebase-todo/g' $(git ls-files '*.sh')
git update-index --refresh >& /dev/null
exit 0
back to top