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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Weidendorfer <Josef.Weidendorfer@gmx.de>2005-11-28 00:11:33 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-28 01:40:29 +0300
commit26169747b811b8ecd5693adfce4f5c7e322d2487 (patch)
tree70268c3e2beb244d5b0ee52ffbf468fd7fdd933d /git-mv.perl
parentb933e818e951c290e8355ae544567bba949f392e (diff)
git-mv: follow -k request even on failing renames
-k requests to keep running on an error condition. Previously, git-mv stopped on failing renames even with -k. There are some error conditions which are not checked in the first phase of git-mv, eg. 'permission denied'. Still, option -k should work. Signed-off-by: Josef Weidendorfer <Josef.Weidendorfer@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-mv.perl')
-rwxr-xr-xgit-mv.perl5
1 files changed, 5 insertions, 0 deletions
diff --git a/git-mv.perl b/git-mv.perl
index 8d294d6529..65b1dcfdf2 100755
--- a/git-mv.perl
+++ b/git-mv.perl
@@ -151,6 +151,11 @@ while(scalar @srcs > 0) {
if (!$opt_n) {
if (!rename($src,$dst)) {
$bad = "renaming '$src' failed: $!";
+ if ($opt_k) {
+ print "Warning: skipped: $bad\n";
+ $bad = "";
+ next;
+ }
last;
}
}