git-p4: add gitConfigInt reader
Add a git config reader for integer variables. Please note that the git config implementation automatically supports k, m, and g suffixes. Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
692e17964d
commit
cb1dafdfda
11
git-p4.py
11
git-p4.py
@ -623,6 +623,17 @@ def gitConfigBool(key):
|
|||||||
_gitConfig[key] = gitConfig(key, '--bool') == "true"
|
_gitConfig[key] = gitConfig(key, '--bool') == "true"
|
||||||
return _gitConfig[key]
|
return _gitConfig[key]
|
||||||
|
|
||||||
|
def gitConfigInt(key):
|
||||||
|
if not _gitConfig.has_key(key):
|
||||||
|
cmd = [ "git", "config", "--int", key ]
|
||||||
|
s = read_pipe(cmd, ignore_error=True)
|
||||||
|
v = s.strip()
|
||||||
|
try:
|
||||||
|
_gitConfig[key] = int(gitConfig(key, '--int'))
|
||||||
|
except ValueError:
|
||||||
|
_gitConfig[key] = None
|
||||||
|
return _gitConfig[key]
|
||||||
|
|
||||||
def gitConfigList(key):
|
def gitConfigList(key):
|
||||||
if not _gitConfig.has_key(key):
|
if not _gitConfig.has_key(key):
|
||||||
s = read_pipe(["git", "config", "--get-all", key], ignore_error=True)
|
s = read_pipe(["git", "config", "--get-all", key], ignore_error=True)
|
||||||
|
Reference in New Issue
Block a user