Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
rename apply() to applyCommit(); apply is a python builtin
author
Han-Wen Nienhuys
<hanwen@google.com>
Wed, 23 May 2007 19:55:48 +0000
(16:55 -0300)
committer
Simon Hausmann
<simon@lst.de>
Mon, 28 May 2007 12:29:11 +0000
(14:29 +0200)
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
contrib/fast-import/git-p4
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
cebdf5a
)
diff --git
a/contrib/fast-import/git-p4
b/contrib/fast-import/git-p4
index aba4752d4e2a2e8146139797b6baab7e44ea0d76..bd0ea549290616a4a076defb5bf2e417c0afae76 100755
(executable)
--- a/
contrib/fast-import/git-p4
+++ b/
contrib/fast-import/git-p4
@@
-259,7
+259,7
@@
class P4Submit(Command):
return result
- def apply(self, id):
+ def apply
Commit
(self, id):
if self.directSubmit:
print "Applying local change in working directory/index"
diff = self.diffStatus
@@
-494,7
+494,7
@@
class P4Submit(Command):
commit = commits[0]
commits = commits[1:]
self.config["commits"] = commits
- self.apply(commit)
+ self.apply
Commit
(commit)
if not self.interactive:
break