summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 354081d)
raw | patch | inline | side by side (parent: 354081d)
author | Simon Hausmann <simon@lst.de> | |
Tue, 19 Feb 2008 08:12:29 +0000 (09:12 +0100) | ||
committer | Simon Hausmann <simon@lst.de> | |
Wed, 27 Feb 2008 15:26:57 +0000 (16:26 +0100) |
This turns out to be rarely useful and is already covered by git's commit.template configuration variable.
Signed-off-by: Simon Hausmann <simon@lst.de>
Signed-off-by: Simon Hausmann <simon@lst.de>
contrib/fast-import/git-p4 | patch | blob | history |
index e4238538a1cc0763f860407d8bdf785bea50ccd4..f2a6059a7e8f2011be063d5099939c0c2b11cc91 100755 (executable)
optparse.make_option("--verbose", dest="verbose", action="store_true"),
optparse.make_option("--origin", dest="origin"),
optparse.make_option("--reset", action="store_true", dest="reset"),
- optparse.make_option("--log-substitutions", dest="substFile"),
optparse.make_option("--direct", dest="directSubmit", action="store_true"),
optparse.make_option("-M", dest="detectRename", action="store_true"),
]
self.firstTime = True
self.reset = False
self.interactive = True
- self.substFile = ""
self.firstTime = True
self.origin = ""
self.directSubmit = False
if self.reset:
self.firstTime = True
- if len(self.substFile) > 0:
- for line in open(self.substFile, "r").readlines():
- tokens = line.strip().split("=")
- self.logSubstitutions[tokens[0]] = tokens[1]
-
self.check()
self.configFile = self.gitdir + "/p4-git-sync.cfg"
self.config = shelve.open(self.configFile, writeback=True)