When running git branch, I'm not getting the output in the standard ouptut but in less program.

Spaceship version: 3.0.3
Zsh version: 5.3
Zsh framework: oh-my-zsh
Zsh plugin manager: None
Terminal emulator: iTerm
Operating system: macOS
.zshrc# your configuration here
ZSH_THEME="spaceship"
## THEME OPTIONS
SPACESHIP_CHAR_SYMBOL="❯ "
SPACESHIP_PACKAGE_SHOW="false"
SPACESHIP_NODE_SHOW="false"
SPACESHIP_EXEC_TIME_SHOW="false"
Prompts do not change any shell behavior other than how it looks and this is not an issue with spaceship-prompt.
Possibly you updated your git to v2.16 recently and this change was introduced. From v2.16, git branch --list pipes its output to less. You can disable this with git config --global pager.branch false. Please see the related git release notes.
Most helpful comment
Prompts do not change any shell behavior other than how it looks and this is not an issue with
spaceship-prompt.Possibly you updated your
gittov2.16recently and this change was introduced. Fromv2.16,git branch --listpipes its output toless. You can disable this withgit config --global pager.branch false. Please see the related git release notes.