I just updated my git to version 1.8 on OSX 10.8.2 following this tutorial and now git responds partially in my localization. e.g.
$ git status
# Auf Zweig master
nothing to commit, working directory clean
How can I shut this off?
You could put the following in your ~/.profile
(or ~/.bashrc
),
export LANG=en_US
This will apply to all commands that use your locale, not just git
You can use alias
to specifically disable localization:
alias git="LANG=en_US git"
Put that in your .profile
/.bashrc
(or other shell startup script) to make it permanent.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With