Merge branch 'pw/completion-stash' into maint

* pw/completion-stash:
  completion: fix mis-indentation in _git_stash()
This commit is contained in:
Junio C Hamano 2016-02-22 13:10:20 -08:00
Родитель 924459c516 59305aeeba
Коммит 47847c756b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2413,8 +2413,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')"