Skip to content

Commit 59305ae

Browse files
szedergitster
authored andcommitted
completion: fix mis-indentation in _git_stash()
Signed-off-by: SZEDER Gábor <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d7d4ca8 commit 59305ae

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
@@ -2409,8 +2409,8 @@ _git_stash ()
24092409
show,--*|branch,--*)
24102410
;;
24112411
branch,*)
2412-
if [ $cword -eq 3 ]; then
2413-
__gitcomp_nl "$(__git_refs)";
2412+
if [ $cword -eq 3 ]; then
2413+
__gitcomp_nl "$(__git_refs)";
24142414
else
24152415
__gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
24162416
| sed -n -e 's/:.*//p')"

0 commit comments

Comments
 (0)