also strip p4/ from local imports.
[gitweb.git] / contrib / fast-import / git-p4
index 28e37fa6ab489fec66006716ab7b9249a64789cd..88ea12cb37416a51e46e521bb5713f2906f756f0 100755 (executable)
@@ -948,9 +948,9 @@ class P4Sync(Command):
             if not line.startswith('p4/') or line == "p4/HEAD":
                 continue
             branch = line
-            if self.importIntoRemotes:
-                # strip off p4
-                branch = re.sub ("^p4/", "", line)
+
+            # strip off p4
+            branch = re.sub ("^p4/", "", line)
 
             self.p4BranchesInGit.append(branch)
             self.initialParents[self.refPrefix + branch] = parseRevision(line)