Made compatible with git 2.14 on empty repo

master
Ilya Kantor 8 years ago
parent 806889d155
commit 1d6089e80b
  1. 3
      gitstatus.py
  2. 4
      gitstatus.sh

@ -89,6 +89,8 @@ for st in status:
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:
@ -150,4 +152,3 @@ if python_version == 2:
Print(out.encode('utf-8'))
else:
Print(out)

@ -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

Loading…
Cancel
Save