Github initial setup

Set the name and e-mail address

git config --global user.name "Firstname Lastname"

git config --global user.email "[email protected]"

 

This command will set the output file in the form "~ / .gitconfig" in

[user]

  name=Firstname Lastname

  [email protected]

 

Improve the readability of the output of the command

git config --global color.ui auto

Thus, various commands output becomes easier to distinguish:

[color]

  ui = auto

 

Guess you like

Origin www.cnblogs.com/zhichun/p/11764157.html
Recommended