Staging
v0.5.1
https://github.com/git/git
Revision be3fa9125e708348c7baf04ebe9507a72a9d1800 authored by Junio C Hamano on 31 October 2011, 02:14:24 UTC, committed by Junio C Hamano on 31 October 2011, 02:14:24 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 324bc2a
Raw File
Tip revision: be3fa9125e708348c7baf04ebe9507a72a9d1800 authored by Junio C Hamano on 31 October 2011, 02:14:24 UTC
Git 1.7.8-rc0
Tip revision: be3fa91
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