mirror of https://github.com/ohmyzsh/ohmyzsh.git
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
commit
328e67eb00
|
@ -12,3 +12,11 @@ parse_git_dirty () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Will return the current branch name
|
||||||
|
# Usage example: git pull origin $(current_branch)
|
||||||
|
#
|
||||||
|
function current_branch() {
|
||||||
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
||||||
|
echo ${ref#refs/heads/}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue