提交 8ead4fda 编写于 作者: S Simon Hausmann

Create the origin based import branch using git update-ref instead of git branch

so that it's possible to have the import branch in refs/remotes.
Signed-off-by: NSimon Hausmann <simon@lst.de>
上级 1c9d393d
......@@ -836,7 +836,10 @@ class P4Sync(Command):
if not gitBranchExists(self.branch) and gitBranchExists("origin"):
if not self.silent:
print "Creating %s branch in git repository based on origin" % self.branch
system("git branch %s origin" % self.branch)
branch = self.branch
if not branch.startswith("refs"):
branch = "refs/heads/" + branch
system("git update-ref %s origin" % branch)
[self.previousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(self.branch))
if len(self.previousDepotPath) > 0 and len(p4Change) > 0:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册