X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=cmd-rename.sh;h=992493de2218ad86d59e6a60e1ee3e01f5c7221d;hb=a0fa2a10b401aa4c8b13d176a5e3e3b7c455208f;hp=ad3285b7977b7dd1a7f152652004b2731e75b8cb;hpb=bfb73b2ebc2d50c8e14133ad15137604fc54563d;p=git.git diff --git a/cmd-rename.sh b/cmd-rename.sh index ad3285b7..992493de 100755 --- a/cmd-rename.sh +++ b/cmd-rename.sh @@ -1,12 +1,21 @@ #!/bin/sh +# +# If you installed git by hand previously, you may find this +# script useful to remove the symbolic links that we shipped +# for backward compatibility. +# +# Running this script with the previous installation directory +# like this: +# +# $ cmd-rename.sh /usr/local/bin/ +# +# would clean them. + d="$1" test -d "$d" || exit while read old new do rm -f "$d/$old" - if [ -x "$d/$new" ]; then - ln -s "$new" "$d/$old" - fi done <<\EOF git-add-script git-add git-archimport-script git-archimport @@ -51,7 +60,3 @@ git-update-cache git-update-index git-convert-cache git-convert-objects git-fsck-cache git-fsck-objects EOF - -# These two are a bit more than symlinks now. -# git-ssh-push git-ssh-upload -# git-ssh-pull git-ssh-fetch