completion: simplify __git_remotes()
authorSZEDER Gábor <szeder@ira.uka.de>
Wed, 4 Mar 2015 14:10:29 +0000 (15:10 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 6 Mar 2015 20:48:02 +0000 (12:48 -0800)
The __git_remotes() helper function lists the remotes from the config
file by processing the output of a 'git config' query. A simple 'git
remote' produces the exact same output, so run that instead.

Remotes under '$GIT_DIR/remotes' are still listed by running 'ls -1',
because 'git remote' unfortunately ignores them.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found