How to change the language of Git to English on Linux?

11

I'm using Git on the Linux terminal (Ubuntu), and it's in Portuguese.

  

In the master branch

     

Initial Submission.

     

nothing to send (create / copy files and use "git add" to register)

How do I change the language settings for English?

    
asked by anonymous 21.08.2017 / 20:22

1 answer

11

Change ~/.bashrc :

alias git='LANG=en_US git'
    
21.08.2017 / 20:30