【Git】設定ファイルの優先順位
目次
設定ファイルの種類
- local : リポジトリ内
- global : ユーザー内
- system : PC全体
優先順位
設定ファイルの効果が出る
設定されている値を表示する
- local :
git config --local --list
- global :
git config --global --list
- system :
git config --system --list
【Git】設定ファイルの優先順位
設定ファイルの効果が出る
git config --local --list
git config --global --list
git config --system --list
【Git】設定ファイルの優先順位