我记得我通过port install git-core
安装了git。并且默认显示中文单词,如下所示:
# 位于分支 master
# 您的分支领先 'origin/master' 共 2 个提交。
#
nothing to commit, working directory clean
字符串
和/或
# 位于分支 master
# 您的分支领先 'origin/master' 共 2 个提交。
#
# 尚未暂存以备提交的变更:
# (使用 "git add <file>..." 更新要提交的内容)
# (使用 "git checkout -- <file>..." 丢弃工作区的改动)
#
# 修改: 2.txt
#
no changes added to commit (use "git add" and/or "git commit -a")
型
我的工作是中文的,我想知道如何才能把git的语言改回英文。
6条答案
按热度按时间nnvyjq4y1#
第一个月
将其添加到.bashrc或.zshrc文件中
a5g8bdjr2#
如果你用鱼壳
第一个月
字符串
bxpogfeg3#
您可以尝试将
LANG
环境变量设置为en_US.UTF-8
,方法是在~/.bash_profile
文件中添加以下行:字符串
它帮助我在macOS莫哈韦上将我的Git语言切换到英语。
mgdq6dx14#
如果您使用iTerm2。
将
export LC_ALL=en_US.UTF-8
添加到.bash_profile
文件则
source ~/.bash_profile
但当您重新启动iTerm2时,它不起作用
然后修复:添加
source ~/.bash_profile
到.zshrc
文件6ju8rftf5#
要使其在Fish中持久,请执行以下操作:
字符串
baubqpgj6#
对于我的mac上的bash,这似乎解决了问题
echo "alias git='LANG=en_GB git'" >> ~/.bashrc