Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 7c181d627c136cbc67ef0f722e74e34017e662f0 authored by Junio C Hamano on 09 November 2008, 01:33:50 UTC
GIT 1.6.0.4
Tip revision: 7c181d6
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