Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
3c698743
Commit
3c698743
authored
Aug 11, 2015
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up gitstatus.py
parent
45473c3a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
gitstatus.py
plugins/git-prompt/gitstatus.py
+5
-10
No files found.
plugins/git-prompt/gitstatus.py
View file @
3c698743
#!/usr/bin/env python
#!/usr/bin/env python
from
__future__
import
print_function
from
__future__
import
print_function
# change this symbol to whatever you prefer
prehash
=
':'
import
sys
import
sys
import
re
import
re
import
subprocess
from
subprocess
import
Popen
,
PIPE
,
check_output
from
subprocess
import
Popen
,
PIPE
# `git status --porcelain -
b
` can collect all information
# `git status --porcelain -
-branch
` can collect all information
# branch, remote_branch, untracked, staged, changed, conflicts, ahead, behind
# branch, remote_branch, untracked, staged, changed, conflicts, ahead, behind
po
=
Popen
([
'git'
,
'status'
,
'--porcelain'
,
'-
b
'
],
stdout
=
PIPE
,
stderr
=
PIPE
)
po
=
Popen
([
'git'
,
'status'
,
'--porcelain'
,
'-
-branch
'
],
stdout
=
PIPE
,
stderr
=
PIPE
)
stdout
,
sterr
=
po
.
communicate
()
stdout
,
sterr
=
po
.
communicate
()
if
po
.
returncode
!=
0
:
if
po
.
returncode
!=
0
:
sys
.
exit
(
0
)
# Not a git repository
sys
.
exit
(
0
)
# Not a git repository
...
@@ -25,11 +21,10 @@ for st in status:
...
@@ -25,11 +21,10 @@ for st in status:
if
st
[
0
]
==
'#'
and
st
[
1
]
==
'#'
:
if
st
[
0
]
==
'#'
and
st
[
1
]
==
'#'
:
if
re
.
search
(
'Initial commit on'
,
st
[
2
]):
if
re
.
search
(
'Initial commit on'
,
st
[
2
]):
branch
=
st
[
2
]
.
split
(
' '
)[
-
1
]
branch
=
st
[
2
]
.
split
(
' '
)[
-
1
]
elif
re
.
search
(
'no branch'
,
st
[
2
]):
branch
=
check_output
([
'git'
,
'rev-parse'
,
'--short'
,
'HEAD'
])
.
decode
(
'utf-8'
)
.
strip
()
elif
len
(
st
[
2
]
.
strip
()
.
split
(
'...'
))
==
1
:
elif
len
(
st
[
2
]
.
strip
()
.
split
(
'...'
))
==
1
:
branch
=
st
[
2
]
.
strip
()
branch
=
st
[
2
]
.
strip
()
if
branch
==
'HEAD (no branch)'
:
cmd
=
[
'git'
,
'log'
,
'-1'
,
'--format="
%
h"'
]
branch
=
subprocess
.
check_output
(
cmd
)
.
strip
()
.
strip
(
'"'
)
else
:
else
:
# current and remote branch info
# current and remote branch info
branch
,
rest
=
st
[
2
]
.
strip
()
.
split
(
'...'
)
branch
,
rest
=
st
[
2
]
.
strip
()
.
split
(
'...'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment