aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-21 12:39:48 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-21 12:39:48 +1200
commit1cdbcf413b03f55c83ca532dfb2c6d7b65c1cadb (patch)
treeba12defc5b2a4d25b880b3b0898a6e4583335647
parentAdd some upstream checking to Git prompt (diff)
parentPort Bash Git prompt changes to pdksh (diff)
downloaddotfiles-1cdbcf413b03f55c83ca532dfb2c6d7b65c1cadb.tar.gz
dotfiles-1cdbcf413b03f55c83ca532dfb2c6d7b65c1cadb.zip
Merge branch 'openbsd'
-rw-r--r--pdksh/pdkshrc.d/prompt.pdksh42
1 files changed, 28 insertions, 14 deletions
diff --git a/pdksh/pdkshrc.d/prompt.pdksh b/pdksh/pdkshrc.d/prompt.pdksh
index 71e952a0..f9dfa584 100644
--- a/pdksh/pdkshrc.d/prompt.pdksh
+++ b/pdksh/pdkshrc.d/prompt.pdksh
@@ -95,21 +95,35 @@ prompt() {
fi
branch=${branch##*/}
+ # Refresh index so e.g. git-diff-files(1) is accurate
+ git update-index --refresh >/dev/null
+
+ # Collect symbols representing repository state
typeset state
- if ! git diff-files --quiet ; then
- # Two exclamation marks, as that's how you get a literal "!" in
- # a pdksh PS1
- state=${state}!!
- fi
- if ! git diff-index --cached --quiet HEAD ; then
- state=${state}+
- fi
- if [[ -n $(git ls-files --others --exclude-standard) ]] ; then
- state=${state}?
- fi
- if git rev-parse --verify refs/stash >/dev/null 2>&1 ; then
- state=${state}^
- fi
+
+ # Upstream HEAD has commits after local HEAD; we're "behind"
+ (($(git rev-list --count 'HEAD..@{u}' 2>/dev/null) > 0)) &&
+ state=${state}\<
+
+ # Local HEAD has commits after upstream HEAD; we're "ahead"
+ (($(git rev-list --count '@{u}..HEAD' 2>/dev/null) > 0)) &&
+ state=${state}\>
+
+ # Tracked files are modified
+ git diff-files --quiet ||
+ state=${state}'!!'
+
+ # Changes are staged
+ git diff-index --cached --quiet HEAD ||
+ state=${state}\+
+
+ # There are some untracked and unignored files
+ [[ -n $(git ls-files --others --exclude-standard) ]] &&
+ state=${state}\?
+
+ # There are stashed changes
+ git rev-parse --quiet --verify refs/stash >/dev/null &&
+ state=${state}\^
# Print the status in brackets; add a git: prefix only if there
# might be another VCS prompt (because PROMPT_VCS is set)