shou2017.com
JP / EN

git user.nameとuser.emailの設定

Mon Oct 22, 2018
Sat Aug 10, 2024

まずはgitの設定を確認

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

gitの設定

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