mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 02:51:11 +00:00
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
# Gets the current branch.
|
||
|
local ref="$(git symbolic-ref HEAD 2> /dev/null)"
|
||
|
if [[ -n "$ref" ]]; then
|
||
|
print "${ref#refs/heads/}"
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
|