Staging
v0.5.1
https://github.com/git/git
Revision eefe19fbfc93b359afe43aa1645eb5591a502f15 authored by Junio C Hamano on 03 December 2009, 08:08:16 UTC, committed by Junio C Hamano on 03 December 2009, 08:08:16 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8dd35c7
Raw File
Tip revision: eefe19fbfc93b359afe43aa1645eb5591a502f15 authored by Junio C Hamano on 03 December 2009, 08:08:16 UTC
Git 1.6.5.4
Tip revision: eefe19f
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