diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-18 23:42:03 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 12:12:53 -0800 |
commit | 573464319f70bd54a7c48cfd7bed6a0f6f331f42 (patch) | |
tree | 1751afb9e3f6dfa8e37bef374279741512fd97c3 /git-mv.perl | |
parent | feffaddce0cec7fd3f749d23e95579b683961002 (diff) | |
download | git-573464319f70bd54a7c48cfd7bed6a0f6f331f42.tar.gz git-573464319f70bd54a7c48cfd7bed6a0f6f331f42.tar.xz |
Allow git-mv to accept ./ in paths.
Signed-off-by: Junio C Hamano <junkio@cox.net>
(cherry picked from 9a0e6731c632c841cd2de9dec0b9091b2f10c6fd commit)
Diffstat (limited to 'git-mv.perl')
-rwxr-xr-x | git-mv.perl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/git-mv.perl b/git-mv.perl index 83dc7e45c..2ea852c91 100755 --- a/git-mv.perl +++ b/git-mv.perl @@ -75,6 +75,15 @@ while(scalar @srcArgs > 0) { $dst = shift @dstArgs; $bad = ""; + for ($src, $dst) { + # Be nicer to end-users by doing ".//a/./b/.//./c" ==> "a/b/c" + s|^\./||; + s|/\./|/| while (m|/\./|); + s|//+|/|g; + # Also "a/b/../c" ==> "a/c" + 1 while (s,(^|/)[^/]+/\.\./,$1,); + } + if ($opt_v) { print "Checking rename of '$src' to '$dst'\n"; } |