summaryrefslogtreecommitdiffstats
path: root/git-radar
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-10-16 17:07:32 +0100
committerMichael Allen <michael@michaelallen.io>2015-10-16 17:07:32 +0100
commita72cc5136a8e9f25d9b3c60922e2f390bbdfae01 (patch)
treec7a1c3241da26496cfa9148feb2d9f16308ee4ef /git-radar
parentf043242a00cc9a178ffa8205462c9cd61ffe36b2 (diff)
parent127e3e5b6d9f95062c6e05e083fbda1860eb647f (diff)
downloadgit-sonar-a72cc5136a8e9f25d9b3c60922e2f390bbdfae01.tar.gz
git-sonar-a72cc5136a8e9f25d9b3c60922e2f390bbdfae01.zip
Merge pull request #80 from cbandera/feature/stash_indicator
Feature/stash indicator
Diffstat (limited to 'git-radar')
-rwxr-xr-xgit-radar3
1 files changed, 3 insertions, 0 deletions
diff --git a/git-radar b/git-radar
index 67b8460..a8dd72e 100755
--- a/git-radar
+++ b/git-radar
@@ -30,6 +30,7 @@ if [[ -z $@ ]]; then
_conflicted_them="\033[1;33mT\033[0m"
_ahead_master="\xF0\x9D\x98\xAE \033[1;32m←\033[0m"
_local_diverged="\033[1;33m⇵\033[0m"
+ _stash="\033[1;33m≡\033[0m"
echo "git-radar - a heads up display for git"
echo ""
echo "examples:"
@@ -51,6 +52,8 @@ if [[ -z $@ ]]; then
echo " # rebase complete, our rewritten commits now need pushed up"
printf " $_git$_ahead_master 3 $_my_branch$_endgit"
echo " # origin/my-branch is up to date with master and has our 3 commits waiting merge"
+ printf " $_git$_master$_endgit 3$_stash"
+ echo " # You have 3 stashes stored"
echo ""
echo "usage:"