how to change git language to english on linux

0

I'm a self-taught student and I'm learning how to use the git tool (I'm starting now by watching RBtech channel tutorials on youtube). I installed git on my ubuntu but git is with the language in Portuguese and I would like to know how to change to the English language (because it is easier to follow the lessons and I prefer the English language), Valew galera! >     

asked by anonymous 19.04.2017 / 16:38

1 answer

0

On your terminal, check the return of the command:

echo $LANG

It will probably be:

pt_BR.UTF-8

Change the value of the variable as follows:

echo "export LANG=en_US.UTF-8" >> ~/.bashrc

And restart it:

source ~/.bashrc
    
19.04.2017 / 16:46