Cross Forests
/
projects
/
python
/
fast-export.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2710e51
)
also strip p4/ from local imports.
author
Han-Wen Nienhuys
<hanwen@google.com>
Wed, 23 May 2007 21:49:35 +0000
(18:49 -0300)
committer
Han-Wen Nienhuys
<hanwen@google.com>
Fri, 8 Jun 2007 22:31:49 +0000
(19:31 -0300)
git-p4
patch
|
blob
|
history
diff --git
a/git-p4
b/git-p4
index
28e37fa
..
88ea12c
100755
(executable)
--- a/
git-p4
+++ b/
git-p4
@@
-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)