My git cli switched to russian after brew upgrade. I\'ve tried to find why, or how, but no clue.
$ git --version git version 2.19.0
How do
A simple workaround is to add the following line to your ~/.bashrc or ~/.zshrc file:
~/.bashrc
~/.zshrc
alias git="LANG=\"en_US.UTF-8\" git"
Then execute source ~/.bashrc (or source ~/.zshrc) and voila :)
source ~/.bashrc
source ~/.zshrc