From 837ec75aad1e0a318b46a3dc4f6e6f60838bde98 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 13 Apr 2007 22:21:10 +0200 Subject: [PATCH] Print an error message of some sort if git fast-import fails. --- git-p4 | 1 + 1 file changed, 1 insertion(+) diff --git a/git-p4 b/git-p4 index 4fbfaf1..6db757a 100755 --- a/git-p4 +++ b/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: -- 2.11.4.GIT