git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix git p4 sync errors
@ 2012-10-21  1:59 Matt Arsenault
  2012-10-21 19:06 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Matt Arsenault @ 2012-10-21  1:59 UTC (permalink / raw)
  To: git

>From 425e4dc6992d07aa00039c5bb8e8c76def591fd3 Mon Sep 17 00:00:00 2001
From: Matt Arsenault <arsenm2@gmail.com>
Date: Sat, 20 Oct 2012 18:48:45 -0700
Subject: [PATCH] git-p4: Fix not using -s option to describe

This solves errors in some cases when syncing renamed files.
Other places where describe is used use the -s, except this one.

Signed-off-by: Matt Arsenault <arsenm2@gmail.com>
---
 git-p4.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git-p4.py b/git-p4.py
index 882b1bb..e203508 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -2543,7 +2543,7 @@ class P4Sync(Command, P4UserMap):
     def importChanges(self, changes):
         cnt = 1
         for change in changes:
-            description = p4Cmd(["describe", str(change)])
+            description = p4Cmd(["describe", "-s", str(change)])
             self.updateOptionDict(description)
 
             if not self.silent:
-- 
1.7.12.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-10-28 15:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-21  1:59 [PATCH] Fix git p4 sync errors Matt Arsenault
2012-10-21 19:06 ` Junio C Hamano
2012-10-25  2:41   ` Matt Arsenault
2012-10-26 15:44     ` Christian Couder
2012-10-28 15:06     ` Pete Wyckoff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).