From 883791be16c15b94ca01ca4b570137380bd5598d Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 11 Jun 2007 08:54:45 +0200 Subject: [PATCH] Fix depot-paths encoding for multi-path imports (don't split up //depot/path/foo) --- git-p4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-p4 b/git-p4 index 551573a..815d8bb 100755 --- a/git-p4 +++ b/git-p4 @@ -1312,7 +1312,7 @@ class P4Sync(Command): parent = self.initialParents[branch] del self.initialParents[branch] - self.commit(description, filesForCommit, branch, branchPrefix, parent) + self.commit(description, filesForCommit, branch, [branchPrefix], parent) else: files = self.extractFilesFromCommit(description) self.commit(description, files, self.branch, self.depotPaths, -- 2.11.4.GIT