Skip to content

Commit

Permalink
Merge branch 'iliakan-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown authored and Unknown committed Aug 10, 2017
2 parents f2da28f + 709ff6c commit 2e617b0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
16 changes: 9 additions & 7 deletions gitprompt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -551,13 +551,15 @@ function updatePrompt() {
}

__chk_gitvar_status 'REMOTE' '-n'
__add_status "$GIT_PROMPT_SEPARATOR"
__chk_gitvar_status 'STAGED' '-ne 0'
__chk_gitvar_status 'CONFLICTS' '-ne 0'
__chk_gitvar_status 'CHANGED' '-ne 0'
__chk_gitvar_status 'UNTRACKED' '-ne 0'
__chk_gitvar_status 'STASHED' '-ne 0'
__chk_gitvar_status 'CLEAN' '-eq 1' -
if [[ $GIT_CLEAN -eq 0 ]] || [[ $GIT_PROMPT_CLEAN != "" ]]; then
__add_status "$GIT_PROMPT_SEPARATOR"
__chk_gitvar_status 'STAGED' '-ne 0'
__chk_gitvar_status 'CONFLICTS' '-ne 0'
__chk_gitvar_status 'CHANGED' '-ne 0'
__chk_gitvar_status 'UNTRACKED' '-ne 0'
__chk_gitvar_status 'STASHED' '-ne 0'
__chk_gitvar_status 'CLEAN' '-eq 1' -
fi
__add_status "$ResetColor$GIT_PROMPT_SUFFIX"

NEW_PROMPT="$(gp_add_virtualenv_to_prompt)$PROMPT_START$($prompt_callback)$STATUS_PREFIX$STATUS$PROMPT_END"
Expand Down
3 changes: 2 additions & 1 deletion gitstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ def get_stash():
if st[0] == '#' and st[1] == '#':
if re.search('Initial commit on', st[2]):
branch = st[2].split(' ')[-1]
elif re.search('No commits yet on', st[2]):
branch = st[2].split(' ')[-1]
elif re.search('no branch', st[2]): # detached status
branch = get_tag_or_hash()
elif len(st[2].strip().split('...')) == 1:
Expand Down Expand Up @@ -150,4 +152,3 @@ def get_stash():
Print(out.encode('utf-8'))
else:
Print(out)

4 changes: 4 additions & 0 deletions gitstatus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ if [[ "$branch" == *"Initial commit on"* ]]; then
IFS=" " read -ra fields <<< "$branch"
branch="${fields[3]}"
remote="_NO_REMOTE_TRACKING_"
elif [[ "$branch" == *"No commits yet on"* ]]; then
IFS=" " read -ra fields <<< "$branch"
branch="${fields[4]}"
remote="_NO_REMOTE_TRACKING_"
elif [[ "$branch" == *"no branch"* ]]; then
tag=$( git describe --tags --exact-match )
if [[ -n "$tag" ]]; then
Expand Down

0 comments on commit 2e617b0

Please sign in to comment.