ZSH: prompt: show branch on older versions of git

Jonathan Hodgson 3 years ago
parent 8377a506be
commit e4d2386912
  1. 2
      shells/zsh/includes/promptconfig.zsh

@ -121,7 +121,7 @@ function prompt_project() {
prompt_git(){
local repoTopLevel="$(command git rev-parse --show-toplevel 2> /dev/null)"
if [ -n "$repoTopLevel" ]; then
local branch="$(git branch --show-current 2> /dev/null)"
local branch="$(git branch --show-current 2> /dev/null || git rev-parse --abbrev-ref HEAD)"
local tag="$(git describe --tags --exact-match HEAD 2> /dev/null)"
local color="green"
local ret=""

Loading…
Cancel
Save