summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Simon Hausmann <simon@lst.de>2007-04-13 22:21:10 +0200
committerLibravatar Simon Hausmann <simon@lst.de>2007-04-13 22:21:10 +0200
commitfd4ca86a0b920ddde464e787ef2350126f083d75 (patch)
tree56e24675ecfda50a059119e6d4fd014af95b9ea4
parentAllow for convenient rebasing after git-p4 submit (diff)
downloadtgif-fd4ca86a0b920ddde464e787ef2350126f083d75.tar.xz
Print an error message of some sort if git fast-import fails.
Signed-off-by: Simon Hausmann <simon@lst.de>
-rwxr-xr-xcontrib/fast-import/git-p41
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
index 4fbfaf11b6..6db757ae43 100755
--- a/contrib/fast-import/git-p4
+++ b/contrib/fast-import/git-p4
@@ -958,6 +958,7 @@ class P4Sync(Command):
try:
self.commit(details, self.extractFilesFromCommit(details), self.branch, self.globalPrefix)
except IOError:
+ print "IO error with git fast-import. Is your git version recent enough?"
print self.gitError.read()
else: