* jc/mv:
  Allow git-mv to accept ./ in paths.
This commit is contained in:
Junio C Hamano 2006-02-19 21:17:59 -08:00
Родитель 5102349cc0 9a0e6731c6
Коммит 1561a9b662
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -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";
}