mirror of https://github.com/bjeanes/dotfiles.git
4 lines
115 B
Fish
4 lines
115 B
Fish
|
function git_parse_branch
|
||
|
sh -c 'git branch --no-color 2> /dev/null' | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
|
||
|
end
|