diff options
author | Marius Storm-Olsen <git@storm-olsen.com> | 2009-02-21 15:48:43 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-23 15:23:39 -0800 |
commit | f50edca56c40cbfe48734eacd5d79416ba3649eb (patch) | |
tree | b19ad8acf5e7dcec749fcb9afb90a8068f7e1384 /contrib | |
parent | completion: More fixes to prevent unbound variable errors (diff) | |
download | tgif-f50edca56c40cbfe48734eacd5d79416ba3649eb.tar.xz |
Add bare repository indicator for __git_ps1
Prefixes the branch name with "BARE:" if you're in a
bare repository.
Signed-off-by: Marius Storm-Olsen <git@storm-olsen.com>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/completion/git-completion.bash | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 6e8c5b91ac..a61d852a14 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -135,11 +135,17 @@ __git_ps1 () fi fi + local c + + if [ "true" = "$(git config --bool core.bare 2>/dev/null)" ]; then + c="BARE:" + fi + if [ -n "$b" ]; then if [ -n "${1-}" ]; then - printf "$1" "${b##refs/heads/}$w$i$r" + printf "$1" "$c${b##refs/heads/}$w$i$r" else - printf " (%s)" "${b##refs/heads/}$w$i$r" + printf " (%s)" "$c${b##refs/heads/}$w$i$r" fi fi fi |