shou2017.com
JP

Setting git user.name and user.email

Mon Oct 22, 2018
Sat Aug 10, 2024
Git

First, Check Your Current Git Settings

$ git config user.email
  [email protected]
$ git config user.name
  boku 

Configuring Git Settings

$ git config --global user.email "[email protected]"
$ git config --global user.name "Your Name"
See Also