bokunonikki.net
JP / EN

git user.nameとuser.emailの設定

Mon Oct 22, 2018
Sat Jul 16, 2022
Git

まずはgitの設定を確認

1
2
3
4
$ git config user.email
  boku@gmail.com
$ git config user.name
  boku 

gitの設定

1
2
$ git config --global user.email "you@example.com"
$ git config --global user.name "Your Name"
See Also