Commit 4f71818a authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #329 from juanghurtado/master

Support for $(current_branch) on git_parse_ahead()
parents 7958e54a e129fc5a
...@@ -15,7 +15,7 @@ parse_git_dirty() { ...@@ -15,7 +15,7 @@ parse_git_dirty() {
# Checks if there are commits ahead from remote # Checks if there are commits ahead from remote
function git_prompt_ahead() { function git_prompt_ahead() {
if $(echo "$(git log origin/master..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then if $(echo "$(git log origin/$(current_branch)..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
echo "$ZSH_THEME_GIT_PROMPT_AHEAD" echo "$ZSH_THEME_GIT_PROMPT_AHEAD"
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment