shou.com
JP / EN

git user.nameとuser.emailの設定

Mon Oct 22, 2018
Mon Oct 22, 2018

まずはgitの設定を確認

1
2
3
4
$ git config user.email
  [email protected]
$ git config user.name
  boku 

gitの設定

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