diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-22 10:27:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-22 10:27:24 -0800 |
commit | 8716bdca268d9fb1cc9fc0255bfcbb27ace7e5b5 (patch) | |
tree | 38088091c4c2dcbeec2290d73399fe688d8631e9 /contrib/completion | |
parent | 0233b800c838ddda41db318ee396320b3c21a560 (diff) | |
parent | 59305aeebab98080f6f39a1c4cf50d9dd06c8db3 (diff) | |
download | git-8716bdca268d9fb1cc9fc0255bfcbb27ace7e5b5.tar.gz |
Merge branch 'pw/completion-stash'
* pw/completion-stash:
completion: fix mis-indentation in _git_stash()
Diffstat (limited to 'contrib/completion')
-rw-r--r-- | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 45ec47f2b1..e3918c87e3 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2415,8 +2415,8 @@ _git_stash () show,--*|branch,--*) ;; branch,*) - if [ $cword -eq 3 ]; then - __gitcomp_nl "$(__git_refs)"; + if [ $cword -eq 3 ]; then + __gitcomp_nl "$(__git_refs)"; else __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \ | sed -n -e 's/:.*//p')" |