diff options
author | Simon Hausmann <simon@lst.de> | 2007-04-13 22:21:10 +0200 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-04-13 22:21:10 +0200 |
commit | fd4ca86a0b920ddde464e787ef2350126f083d75 (patch) | |
tree | 56e24675ecfda50a059119e6d4fd014af95b9ea4 | |
parent | Allow for convenient rebasing after git-p4 submit (diff) | |
download | tgif-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-x | contrib/fast-import/git-p4 | 1 |
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: |