「GitLab」Git BashでSystem、Globalレベルを設定する
説明
System 全てのユーザ
Global Windowsにログインユーザのみ
Local 特定のリポジトリのみ
操作方法
1.Systemレベルの設定
構文
git config –system <プロパティ> <値>
例
$ git config –system user.name yamada
2.Globalレベルの設定
構文
git config –blobal <プロパティ> <値>
例
$ git config –global user.name yamada
$ git config –global user.email “12345@exaple.com"
3.Localレベルの設定
構文
git config <プロパティ> <値>
例
$ git config user.name yamada