1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-02-09 02:05:23 +00:00

10 lines
162 B
Plaintext
Raw Normal View History

2011-10-11 23:13:58 -04:00
# 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