From: Lars Schneider Date: Sat, 26 Sep 2015 07:54:59 +0000 (+0200) Subject: git-p4: add gitConfigInt reader X-Git-Tag: v2.7.0-rc0~73^2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/cb1dafdfdadca4d1bbe4147d2f9c72b5ef0f4ab7 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 Signed-off-by: Junio C Hamano --- diff --git a/git-p4.py b/git-p4.py index 206a45f613..c99b077884 100755 --- a/git-p4.py +++ b/git-p4.py @@ -623,6 +623,17 @@ def gitConfigBool(key): _gitConfig[key] = gitConfig(key, '--bool') == "true" 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): if not _gitConfig.has_key(key): s = read_pipe(["git", "config", "--get-all", key], ignore_error=True)