diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-04-29 18:19:37 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-29 08:07:22 -0700 |
commit | de7c201a10857e5d424dbd8db880a6f24ba250f9 (patch) | |
tree | da450e74299e7a39c0768942e2f3b394a21cdaae /contrib | |
parent | documentation: trivial whitespace cleanups (diff) | |
download | tgif-de7c201a10857e5d424dbd8db880a6f24ba250f9.tar.xz |
git-completion.bash: lexical sorting for diff.statGraphWidth
df44483a (diff --stat: add config option to limit graph width,
2012-03-01) added the option diff.startGraphWidth to the list of
configuration variables in git-completion.bash, but failed to notice
that the list is sorted alphabetically. Move it to its rightful place
in the list.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index f67b0f008b..c8e07975db 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2054,13 +2054,13 @@ _git_config () core.whitespace core.worktree diff.autorefreshindex - diff.statGraphWidth diff.external diff.ignoreSubmodules diff.mnemonicprefix diff.noprefix diff.renameLimit diff.renames + diff.statGraphWidth diff.suppressBlankEmpty diff.tool diff.wordRegex |