projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4280e53
)
Make --with-origin also work without origin :)
author
Simon Hausmann
<shausman@trolltech.com>
Fri, 25 May 2007 08:28:46 +0000
(10:28 +0200)
committer
Simon Hausmann
<shausman@trolltech.com>
Fri, 25 May 2007 08:28:46 +0000
(10:28 +0200)
Signed-off-by: Simon Hausmann <shausman@trolltech.com>
contrib/fast-import/git-p4
patch
|
blob
|
history
diff --git
a/contrib/fast-import/git-p4
b/contrib/fast-import/git-p4
index e8a5c1fa316f2ac5be4fa32b145d233db31252a5..30ee68c60983cabe59750a95cf78a6b63ced7e8e 100755
(executable)
--- a/
contrib/fast-import/git-p4
+++ b/
contrib/fast-import/git-p4
@@
-846,8
+846,9
@@
class P4Sync(Command):
self.refPrefix = "refs/heads/"
if self.syncWithOrigin:
- print "Syncing with origin first as requested by calling git fetch origin"
- system("git fetch origin")
+ if gitBranchExists("origin"):
+ print "Syncing with origin first as requested by calling git fetch origin"
+ system("git fetch origin")
createP4HeadRef = False;