summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorStephen Boyd <bebarino@gmail.com>2009-10-09 06:21:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-09 22:00:40 (GMT)
commite0d78059540aab2e6ff720e7c940d7244cc12c18 (patch)
treef61f3f6d994a03875e0a241eab8379898ec314f7 /contrib/completion
parent427e586b197c94961b548c8a25ed721651fc335e (diff)
downloadgit-e0d78059540aab2e6ff720e7c940d7244cc12c18.zip
git-e0d78059540aab2e6ff720e7c940d7244cc12c18.tar.gz
git-e0d78059540aab2e6ff720e7c940d7244cc12c18.tar.bz2
completion: fix alias listings with newlines
Aliases with newlines have been a problem since commit 56fc25f (Bash completion support for remotes in .git/config., 2006-11-05). The chance of the problem occurring has been slim at best, until commit 518ef8f (completion: Replace config --list with --get-regexp, 2009-09-11) removed the case statement introduced by commit 56fc25f. Before removing the case statement, most aliases with newlines would work unless they were specially crafted as follows [alias] foo = "log -1 --pretty='format:%s\nalias.error=broken'" After removing the case statement, a more benign alias like [alias] whowhat = "log -1 --pretty='format:%an <%ae>\n%s'" wont-complete = ... would cause the completion to break badly. For now, revert the removal of the case statement until someone comes up with a better way to get keys from git-config. Signed-off-by: Stephen Boyd <bebarino@gmail.com> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rwxr-xr-xcontrib/completion/git-completion.bash8
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 652a47c..e482c8d 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -602,8 +602,12 @@ __git_aliases ()
{
local i IFS=$'\n'
for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
- i="${i#alias.}"
- echo "${i/ */}"
+ case "$i" in
+ alias.*)
+ i="${i#alias.}"
+ echo "${i/ */}"
+ ;;
+ esac
done
}