From 1f1d1fd37d7dd5710db63225549cbb0dd8ef0649 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 11 Jun 2007 23:28:03 +0200 Subject: [PATCH] Provide some information for single branch imports where the commits go --- git-p4 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/git-p4 b/git-p4 index cababc7..6c19929 100755 --- a/git-p4 +++ b/git-p4 @@ -1175,7 +1175,7 @@ class P4Sync(Command): self.gitError = importProcess.stderr if self.revision: - print "Doing initial import of %s from revision %s" % (' '.join(self.depotPaths), self.revision) + print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), self.revision, self.branch) details = { "user" : "git perforce import user", "time" : int(time.time()) } details["desc"] = ("Initial import of %s from the state at revision %s" @@ -1252,6 +1252,9 @@ class P4Sync(Command): print "No changes to import!" return True + if not self.silent and not self.detectBranches: + print "Import destination: %s" % self.branch + self.updatedBranches = set() cnt = 1 -- 2.11.4.GIT