shou2017.com
EN

git user.nameとuser.emailの設定

Mon Oct 22, 2018
Sat Aug 10, 2024
Git

まずはgitの設定を確認

$ git config user.email
  boku@gmail.com
$ git config user.name
  boku 

gitの設定

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