summaryrefslogtreecommitdiff
path: root/contrib/fast-import
diff options
context:
space:
mode:
authorLibravatar Simon Hausmann <simon@lst.de>2007-04-08 00:12:02 +0200
committerLibravatar Simon Hausmann <simon@lst.de>2007-04-08 00:12:02 +0200
commitcb53e1f8e9a78ab3f980250d2388a62ae2a42d77 (patch)
treeb3abe63827c19119d24a077cffe4b84a54b38be2 /contrib/fast-import
parentProvide a tree summary after git-p4 rebase (diff)
downloadtgif-cb53e1f8e9a78ab3f980250d2388a62ae2a42d77.tar.xz
Turn off potentially slow label detection by default
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-xcontrib/fast-import/git-p48
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
index 170af90abc..fcdfe22a45 100755
--- a/contrib/fast-import/git-p4
+++ b/contrib/fast-import/git-p4
@@ -417,7 +417,8 @@ class P4Sync(Command):
optparse.make_option("--silent", dest="silent", action="store_true"),
optparse.make_option("--known-branches", dest="knownBranches"),
optparse.make_option("--data-cache", dest="dataCache", action="store_true"),
- optparse.make_option("--command-cache", dest="commandCache", action="store_true")
+ optparse.make_option("--command-cache", dest="commandCache", action="store_true"),
+ optparse.make_option("--detect-labels", dest="detectLabels", action="store_true")
]
self.description = """Imports from Perforce into a git repository.\n
example:
@@ -437,6 +438,7 @@ class P4Sync(Command):
self.committedChanges = Set()
self.branch = ""
self.detectBranches = False
+ self.detectLabels = False
self.changesFile = ""
def p4File(self, depotPath):
@@ -892,7 +894,9 @@ class P4Sync(Command):
self.globalPrefix += "/"
self.getUserMap()
- self.getLabels();
+ self.labels = {}
+ if self.detectLabels:
+ self.getLabels();
if len(self.changeRange) == 0:
try: