Defina uma função zshaddhistory
que determina o nome da ramificação git e acrescenta que ...
function zshaddhistory() {
GIT_BRANCH=' git rev-parse --abbrev-ref=strict HEAD 2>/dev/null '
print -sr -- "${1%%$'\n'} ### ${GIT_BRANCH} ${PWD} $(date '+%Y-%m-%d %R')"
return 1
}