1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 14:00:27 +00:00
prezto/plugins/git/functions/git-branch

16 lines
232 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Displays the current Git branch.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 03:13:58 +00:00
local ref="$(git symbolic-ref HEAD 2> /dev/null)"
if [[ -n "$ref" ]]; then
print "${ref#refs/heads/}"
return 0
else
return 1
fi