git config
git
$ git config ~~~.###
で設定を記述できる
.gitフォルダの中のconfigファイルに記録される
つまりここを直接編集するのと同じ
これはtoml(要出典だけどあってると思う)
特定のconfigは、git自体の挙動を変更する
たとえばusernameやpasswordはここに記述される
独自にインストールしたgitのサブコマンドの設定は、ここを参照する
例えばgit-ftp
$ git config git-ftp.url ftp.example.com//pub
とかを打てば
code:config
git-ftp
url = ftp.example.com//pub
こうなる