From 206019cae3d9df844a7b6046b607591c458b1d0b Mon Sep 17 00:00:00 2001 From: Pat Thoyts Date: Fri, 28 Sep 2012 11:26:35 +0100 Subject: [PATCH] Source git-prompt.sh if present. In git commit af31a456 the git prompt code was moved out into another file to permit lazy loading of bash functions. To maintain our git prompt we must source both files now. Signed-off-by: Pat Thoyts --- etc/profile | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/profile b/etc/profile index 3f01758a..1f3a001b 100644 --- a/etc/profile +++ b/etc/profile @@ -152,6 +152,7 @@ esac . /git/contrib/completion/git-completion.bash +[ -r /git/contrib/completion/git-prompt.sh ] && . /git/contrib/completion/git-prompt.sh if test -z "$WINELOADERNOEXEC" then PS1='\[\033]0;$MSYSTEM:\w\007 -- 2.11.4.GIT