Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git-rename-script - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3952382dbce6b27311680cf255dc0ffb6828c011 (plain)
1
2
3
4
5
6
7
#!/bin/sh

. git-sh-setup-script || die "Not a git archive"

[ -f "$1" ] || [ -h "$1" ] || die "git rename: bad source"
[ -e "$2" ] && die "git rename: destination already exists"
mv -- "$1" "$2" && git-update-cache --add --remove -- "$1" "$2"