summaryrefslogtreecommitdiffstats
path: root/prompt.bash
diff options
context:
space:
mode:
authorReinaldo Colina <rcolina@pingidentity.com>2015-08-28 13:55:37 -0700
committerReinaldo Colina <rcolina@pingidentity.com>2015-08-28 13:55:37 -0700
commit93dad96832a59d3d7f6ac6580cabf0202b387ffe (patch)
tree36b91c6061bd049db3d92642d6c89451ea4f13d7 /prompt.bash
parent637b5d5534469ebb15826139e1b3df12a1cc9309 (diff)
downloadgit-sonar-93dad96832a59d3d7f6ac6580cabf0202b387ffe.tar.gz
git-sonar-93dad96832a59d3d7f6ac6580cabf0202b387ffe.zip
Removing --minimal arg implementation
- Dealing with the git: prefix will be done in a separate pull request - The new --no-remote-status arg remains
Diffstat (limited to 'prompt.bash')
-rwxr-xr-xprompt.bash6
1 files changed, 1 insertions, 5 deletions
diff --git a/prompt.bash b/prompt.bash
index 1e79cd9..429c88d 100755
--- a/prompt.bash
+++ b/prompt.bash
@@ -1,15 +1,11 @@
#! /usr/bin/env bash
dot="$(cd "$(dirname "$0")"; pwd)"
-git_label=""
args=$@
source "$dot/radar-base.sh"
if is_repo; then
- if show_git_label $args; then
- git_label="git:"
- fi
- printf " \x01\033[1;30m\x02$git_label(\x01\033[0m\x02"
+ printf " \x01\033[1;30m\x02git:(\x01\033[0m\x02"
if show_remote_status $args; then
bash_color_remote_commits
fi