mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-23 04:30:24 +02:00
43314: vcs_info git: Flatten a nested if.
No functional change.
This commit is contained in:
parent
f95635a447
commit
4cfbbf9ca5
2 changed files with 9 additions and 9 deletions
|
@ -104,16 +104,11 @@ VCS_INFO_git_getbranch () {
|
|||
elif [[ -d "${gitdir}/.dotest-merge" ]] ; then
|
||||
gitbranch="$(< ${gitdir}/.dotest-merge/head-name)"
|
||||
|
||||
elif gitbranch="$(${(z)gitsymref} 2> /dev/null)" ; then
|
||||
elif gitbranch="refs/tags/$(${vcs_comm[cmd]} describe --all --exact-match HEAD 2>/dev/null)" ; then
|
||||
elif gitbranch="${${"$(< $gitdir/HEAD)"}[1,7]}..." ; then
|
||||
else
|
||||
gitbranch="$(${(z)gitsymref} 2> /dev/null)"
|
||||
|
||||
if [[ $? -ne 0 ]] ; then
|
||||
gitbranch="refs/tags/$(${vcs_comm[cmd]} describe --all --exact-match HEAD 2>/dev/null)"
|
||||
|
||||
if [[ $? -ne 0 ]] ; then
|
||||
gitbranch="${${"$(< $gitdir/HEAD)"}[1,7]}..."
|
||||
fi
|
||||
fi
|
||||
# Can't happen
|
||||
fi
|
||||
|
||||
return 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue