Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 4f8f03d6435e3e1c0d4f95d43022b81c95d6347f authored by Junio C Hamano on 03 August 2007, 22:33:57 UTC
GIT 1.5.3-rc4
Tip revision: 4f8f03d
fixup-builtins
#!/bin/sh
while [ "$1" ]
do
	old="$1"
	new=$(echo "$1" | sed 's/git-/git /')
	echo "Converting '$old' to '$new'"
	git ls-files '*.sh' | while read file
	do
		sed "s/\\<$old\\>/$new/g" < $file > $file.new
		chmod --reference=$file $file.new
		mv $file.new $file
	done
	shift
done
git update-index --refresh >& /dev/null
exit 0
back to top