.gitconfigを修正する
以下のコマンドで現在の設定を見ます。
$ git config --global --list
そして、以下のコマンドで修正します。
$ git config --global user.name xxxxx
$ git config --global user.email yyyyy@example.com
そのプロジェクトのみの場合は、–globalの部分を–localにします。
以下のコマンドで現在の設定を見ます。
$ git config --global --list
そして、以下のコマンドで修正します。
$ git config --global user.name xxxxx
$ git config --global user.email yyyyy@example.com
そのプロジェクトのみの場合は、–globalの部分を–localにします。