文書の表示以前のリビジョン文書の先頭へ この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。 # 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 <name> $ git config --global <name> $ git config --system <name> ``` ##### 設定の更新 ``` $ git config --local <name> <value> $ git config --global <name> <value> $ git config --system <name> <value> ``` Git/Config.txt 最終更新: 2025/04/12 05:15by 127.0.0.1