1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-24 23:33:29 +02:00

added prefix/suffix variable for customizability

This commit is contained in:
r3dDoX
2014-05-26 10:47:51 +02:00
parent 59c8fcc712
commit 514693125b
+2 -1
View File
@@ -62,7 +62,8 @@ function git_prompt_ahead() {
# Gets the number of commits ahead from remote
function git_commits_ahead() {
if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
echo "$(command git log @{upstream}..HEAD | grep '^commit' | wc -l | tr -d ' ')"
COMMITS=$(command git log @{upstream}..HEAD | grep '^commit' | wc -l | tr -d ' ')
echo "$ZSH_THEME_GIT_COMMITS_AHEAD_PREFIX$COMMITS$ZSH_THEME_GIT_COMMITS_AHEAD_SUFFIX"
fi
}