diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-29 15:36:15 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-29 15:36:15 +0100 |
commit | 0629f020498d97f71e8a46828803e4ff54aa6924 (patch) | |
tree | fec1adcd7aacb6f55daaaadb8a9c9f139e5a2933 /prompt.bash | |
parent | da76c7dcbc9b52e881c864c7014dbf2a0aaf43b5 (diff) | |
parent | c03a462177bc2ec469a0cdb06234d08f35054966 (diff) | |
download | git-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.tar.gz git-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.zip |
Merge pull request #29 from reinaldo13/issue-17
issue-17: Add arguments to make the prompt shorter
Diffstat (limited to 'prompt.bash')
-rwxr-xr-x | prompt.bash | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/prompt.bash b/prompt.bash index a3fe420..429c88d 100755 --- a/prompt.bash +++ b/prompt.bash @@ -1,11 +1,14 @@ #! /usr/bin/env bash dot="$(cd "$(dirname "$0")"; pwd)" +args=$@ source "$dot/radar-base.sh" if is_repo; then printf " \x01\033[1;30m\x02git:(\x01\033[0m\x02" - bash_color_remote_commits + if show_remote_status $args; then + bash_color_remote_commits + fi readable_branch_name bash_color_local_commits printf "\x01\033[1;30m\x02)\x01\033[0m\x02" |