Staging
v0.5.1
https://github.com/git/git
Revision 8c7a786b6c8eae8eac91083cdc9a6e337bc133b0 authored by Junio C Hamano on 21 October 2012, 20:56:23 UTC, committed by Junio C Hamano on 21 October 2012, 20:56:23 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8ead1bf
Raw File
Tip revision: 8c7a786b6c8eae8eac91083cdc9a6e337bc133b0 authored by Junio C Hamano on 21 October 2012, 20:56:23 UTC
Git 1.8.0
Tip revision: 8c7a786
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