# Config 参考:[Gitの設定をgit configで確認・変更 | note.nkmk.me](https://note.nkmk.me/git-config-setting/) | 種類 | 対象範囲 | 場所の例 | 備考 | |system | システム全体(全ユーザーの全リポジトリ)| /etc/gitconfig | - | |global | 該当ユーザーの全リポジトリ | ~/.gitconfig | ホーム直下 | |local | 該当リポジトリ| repository/.git/config | リポジトリの.git直下 | ##### 設定の確認 ``` $ git config --local $ git config --global $ git config --system ``` ##### 設定の更新 ``` $ git config --local $ git config --global $ git config --system ```