mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
Fix git-dir option and allow reading log substitutions from a file
Signed-off-by: Simon Hausmann <hausmann@kde.org>
This commit is contained in:
parent
0bcff6121d
commit
5aba82fd50
1 changed files with 6 additions and 2 deletions
|
@ -32,8 +32,8 @@ def p4Cmd(cmd):
|
|||
return result;
|
||||
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "", [ "continue", "--git-dir=", "origin=", "reset", "master=",
|
||||
"submit-log-subst=" ])
|
||||
opts, args = getopt.getopt(sys.argv[1:], "", [ "continue", "git-dir=", "origin=", "reset", "master=",
|
||||
"submit-log-subst=", "log-substitutions=" ])
|
||||
except getopt.GetoptError:
|
||||
print "fixme, syntax error"
|
||||
sys.exit(1)
|
||||
|
@ -63,6 +63,10 @@ def p4Cmd(cmd):
|
|||
key = a.split("%")[0]
|
||||
value = a.split("%")[1]
|
||||
logSubstitutions[key] = value
|
||||
elif o == "--log-substitutions":
|
||||
for line in open(a, "r").readlines():
|
||||
tokens = line[:-1].split("=")
|
||||
logSubstitutions[tokens[0]] = tokens[1]
|
||||
|
||||
if len(gitdir) == 0:
|
||||
gitdir = ".git"
|
||||
|
|
Loading…
Reference in a new issue