Skip to content

Commit 47847c7

Browse files
committed
Merge branch 'pw/completion-stash' into maint
* pw/completion-stash: completion: fix mis-indentation in _git_stash()
2 parents 924459c + 59305ae commit 47847c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/completion/git-completion.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2413,8 +2413,8 @@ _git_stash ()
24132413
show,--*|branch,--*)
24142414
;;
24152415
branch,*)
2416-
if [ $cword -eq 3 ]; then
2417-
__gitcomp_nl "$(__git_refs)";
2416+
if [ $cword -eq 3 ]; then
2417+
__gitcomp_nl "$(__git_refs)";
24182418
else
24192419
__gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
24202420
| sed -n -e 's/:.*//p')"

0 commit comments

Comments
 (0)