diff options
author | Jorge Juan Garcia Garcia <Jorge-Juan.Garcia-Garcia@ensimag.imag.fr> | 2013-06-11 15:34:04 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-24 10:25:49 -0700 |
commit | 4fb5166ab5e1b83ee6211ac77d76173f881ebfdb (patch) | |
tree | 904b9fa329f6d4204ffa037988afcf87b6b93347 /builtin | |
parent | edca4152560522a431a51fc0a06147fc680b5b18 (diff) | |
download | git-4fb5166ab5e1b83ee6211ac77d76173f881ebfdb.tar.gz |
status: introduce status.short to enable --short by default
Some people always run 'git status -s'.
The configuration variable status.short allows to set it by default.
Signed-off-by: Jorge Juan Garcia Garcia <Jorge-Juan.Garcia-Garcia@ensimag.imag.fr>
Signed-off-by: Mathieu Lienard--Mayor <Mathieu.Lienard--Mayor@ensimag.imag.fr>
Reviewed-by: Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>
Signed-off-by: Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/commit.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index d2f30d960a..b2f41dea20 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -1110,6 +1110,13 @@ static int git_status_config(const char *k, const char *v, void *cb) s->submodule_summary = -1; return 0; } + if (!strcmp(k, "status.short")) { + if (git_config_bool(k, v)) + status_format = STATUS_FORMAT_SHORT; + else + status_format = STATUS_FORMAT_NONE; + return 0; + } if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) { s->use_color = git_config_colorbool(k, v); return 0; |