summaryrefslogtreecommitdiff
path: root/git-prompt.sh
diff options
context:
space:
mode:
Diffstat (limited to 'git-prompt.sh')
-rwxr-xr-xgit-prompt.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/git-prompt.sh b/git-prompt.sh
index a7022d2..7ac5c3d 100755
--- a/git-prompt.sh
+++ b/git-prompt.sh
@@ -62,7 +62,8 @@
max_file_list_length=${max_file_list_length:-100}
- upcase_hostname=${upcase_hostname:-on}
+ short_hostname=${short_hostname:-off}
+ upcase_hostname=${upcase_hostname:-on}
count_only=${count_only:-off}
rawhex_len=${rawhex_len:-5}
@@ -297,7 +298,9 @@ set_shell_label() {
#then
host=${HOSTNAME}
- #host=`hostname -s`
+ if [[ $short_hostname = "on" ]]; then
+ host=`hostname -s`
+ fi
host=${host#$default_host}
uphost=`echo ${host} | tr a-z A-Z`
if [[ $upcase_hostname = "on" ]]; then