Allow git-mv to accept ./ in paths.
authorJunio C Hamano <junkio@cox.net>
Sun, 19 Feb 2006 07:42:03 +0000 (23:42 -0800)
committerJunio C Hamano <junkio@cox.net>
Sun, 19 Feb 2006 07:42:03 +0000 (23:42 -0800)
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-mv.perl

index 83dc7e4..2ea852c 100755 (executable)
@@ -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";
     }