diff options
author | Simon Hausmann <shausman@trolltech.com> | 2007-06-17 15:10:24 +0200 |
---|---|---|
committer | Simon Hausmann <shausman@trolltech.com> | 2007-06-17 15:10:24 +0200 |
commit | 1a2edf4e8dff05fea66daf82c675cfab673c1242 (patch) | |
tree | dd2676820acdb749f5cd7b2648c1707868efced6 /contrib | |
parent | Fix the branch mapping detection to be independent from the order of the "p4 ... (diff) | |
download | tgif-1a2edf4e8dff05fea66daf82c675cfab673c1242.tar.xz |
Warn about conflicting p4 branch mappings and use the first one found.
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/fast-import/git-p4 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 3b6d8a09d1..2040591383 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -957,6 +957,12 @@ class P4Sync(Command): source = source[len(self.depotPaths[0]):-4] destination = destination[len(self.depotPaths[0]):-4] + if destination in self.knownBranches: + if not self.silent: + print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination) + print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination) + continue + self.knownBranches[destination] = source lostAndFoundBranches.discard(destination) |