summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:29:10 +0000
commit236943b88375cf5baf07262c72b4a9e168c33e5e (patch)
treea6c30d35d04c265328998f1e7626b0f467876e5a /debian
parentAdding coreutils aliases. (diff)
downloadbase-files-236943b88375cf5baf07262c72b4a9e168c33e5e.tar.xz
base-files-236943b88375cf5baf07262c72b4a9e168c33e5e.zip
Adding git prompt.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r--debian/local/bash/profile.d/zz-git.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/local/bash/profile.d/zz-git.sh b/debian/local/bash/profile.d/zz-git.sh
new file mode 100644
index 0000000..4b7dac6
--- /dev/null
+++ b/debian/local/bash/profile.d/zz-git.sh
@@ -0,0 +1,18 @@
+# /etc/profile.d/zz-git.sh
+
+if [ "$(id -u)" -ne 0 ] && [ ! -e /etc/profile.d/zz-powerline.sh ] && [ -e /usr/lib/git-core/git-sh-prompt ]
+then
+ export GIT_PS1_DESCRIBE_STYLE="branch"
+ export GIT_PS1_SHOWCOLORHINTS="true"
+ export GIT_PS1_SHOWDIRTYSTATE="true"
+ export GIT_PS1_SHOWSTASHSTATE="true"
+ export GIT_PS1_SHOWUNTRACKEDFILES="true"
+ export GIT_PS1_SHOWUPSTREAM="verbose"
+
+ if [ -n "$SSH_CONNECTION" ]
+ then
+ export PROMPT_COMMAND="__git_ps1 '' '\[\033[1;32m\]\u\[\033[0m\]@\H:\w\\$ '"
+ else
+ export PROMPT_COMMAND="__git_ps1 '' '\[\033[1;32m\]\u\[\033[0m\]:\w\\$ '"
+ fi
+fi