completion: add a helper function to get config variables
commite8f9e42829ddb966194f0d38443f321113032bb0
authorSZEDER Gábor <szeder@ira.uka.de>
Sun, 10 May 2015 12:50:17 +0000 (10 14:50 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 12 May 2015 22:12:19 +0000 (12 15:12 -0700)
treea83cc3878cd43a71ecb3d9516b3c2ae95d3af1ad
parentc518059b263bb506b96a0ae90c4d40408c760cb0
completion: add a helper function to get config variables

Currently there are a few completion functions that perform similar 'git
config' queries and filtering to get config variable names: the completion
of pretty aliases, aliases, and remote groups for 'git remote update'.

Unify those 'git config' queries in a helper function to eliminate code
duplication.

Though the helper functions to get pretty aliases and alieses are reduced
to mere one-liner wrappers around the newly added function, keep these
helpers still, because users' completion functions out there might depend
on them.  And they keep their callers a tad easier to read, too.

Add tests for the pretty alias and alias helper to show that they work
as before; not for the remote groups query, though, because that's not
extracted into a helper function and it's not worth the effort to do so
for a sole callsite.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/completion/git-completion.bash
t/t9902-completion.sh