Gitのユーザー名とメールアドレスを設定するコマンド
リポジトリ内で
$ git config user.name "yourname"
$ git config user.email "[email protected]"
全体で
$ git config --global user.name "yourname"
$ git config --global user.email "[email protected]"
設定内容の確認
$ git config user.name
yourname
$ git config user.email
[email protected]