summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d566209)
raw | patch | inline | side by side (parent: d566209)
author | Simon Hausmann <hausmann@kde.org> | |
Thu, 15 Mar 2007 18:07:06 +0000 (19:07 +0100) | ||
committer | Simon Hausmann <hausmann@kde.org> | |
Thu, 15 Mar 2007 18:07:06 +0000 (19:07 +0100) |
Signed-off-by: Simon Hausmann <hausmann@kde.org>
contrib/fast-import/p4-git-sync.py | patch | blob | history |
index 4f020798956ddf0ccf3968fb3f925578acb9b44b..e07fcee42c13e98a8a34de982eb3cc2f5bb14b60 100755 (executable)
print "Deleting temporary p4-sync branch and going back to %s" % master
system("git checkout %s" % master)
system("git branch -D p4-sync")
- print "Cleaning out your perforce checkout by doing p4 edit ... ; p4 revert -a ..."
- system("p4 edit ...")
- system("p4 revert -a ...")
+ print "Cleaning out your perforce checkout by doing p4 edit ... ; p4 revert ..."
+ system("p4 edit ... >/dev/null")
+ system("p4 revert ... >/dev/null")
os.remove(configFile)