From 253e0090fb62f0a130c48e1f965749827db213ab Mon Sep 17 00:00:00 2001 From: Michael Allen Date: Tue, 11 Aug 2015 19:54:34 +0100 Subject: Example of how to use the git-base.sh library --- prompt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 prompt (limited to 'prompt') diff --git a/prompt b/prompt new file mode 100755 index 0000000..6d5c71d --- /dev/null +++ b/prompt @@ -0,0 +1,21 @@ +dot="$(cd "$(dirname "$0")"; pwd)" +source "$dot/git-base.sh" + +command="$1" + +if [[ "$command" == "--zsh" ]]; then + git_prefix="%{$fg_bold[black]%}git:(%{$reset_color}" + git_suffix="%{$fg_bold[black]%})%{$reset_color}" + printf '%s' $git_prefix + zsh_color_remote_commits + branch_name + zsh_color_local_commits + printf '%s' $git_suffix + zsh_color_changes_status +fi + +if [[ "$command" == "--bash" || "$command" == "" ]]; then + git_prefix="\033[1;30mgit:(\033[0m" + git_suffix="\033[1;30m)\033[0m" + echo "$git_prefix$(bash_color_remote_commits;readable_branch_name;bash_color_local_commits)$git_suffix$(bash_color_changes_status)" +fi -- cgit v1.2.3