git-completion.bash: extract from else in _git_stash()
To save a level of indentation, perform an early return in the "if" arm so we can move the "else" code out of the block. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
e94fb44042
commit
42b30bcbb7
|
|
@ -3035,7 +3035,9 @@ _git_stash ()
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
case "$subcommand,$cur" in
|
case "$subcommand,$cur" in
|
||||||
push,--*)
|
push,--*)
|
||||||
__gitcomp "$save_opts --message"
|
__gitcomp "$save_opts --message"
|
||||||
|
|
@ -3072,7 +3074,6 @@ _git_stash ()
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_git_submodule ()
|
_git_submodule ()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue