]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
Correctly handle filenames starting with a dash in add/rm/mv.
authorFlorian Wagner <fl.wagner@uni-tuebingen.de>
Thu, 17 Mar 2016 11:20:30 +0000 (12:20 +0100)
committerJoey Hess <joeyh@joeyh.name>
Thu, 17 Mar 2016 15:01:27 +0000 (11:01 -0400)
IkiWiki/Plugin/git.pm

index f963f06ba1d35a4c0a6ae28bac90bbe35d3e0e8f..bfca933fd8a18c5722876c2128a22716a1d325aa 100644 (file)
@@ -654,7 +654,7 @@ sub rcs_add ($) {
 
        ensure_committer();
 
-       run_or_cry('git', 'add', $file);
+       run_or_cry('git', 'add', '--', $file);
 }
 
 sub rcs_remove ($) {
@@ -664,7 +664,7 @@ sub rcs_remove ($) {
 
        ensure_committer();
 
-       run_or_cry('git', 'rm', '-f', $file);
+       run_or_cry('git', 'rm', '-f', '--', $file);
 }
 
 sub rcs_rename ($$) {
@@ -672,7 +672,7 @@ sub rcs_rename ($$) {
 
        ensure_committer();
 
-       run_or_cry('git', 'mv', '-f', $src, $dest);
+       run_or_cry('git', 'mv', '-f', '--', $src, $dest);
 }
 
 sub rcs_recentchanges ($) {