Sunday, January 20, 2013

git config

Gitの構成の参照/設定


構成ファイルの対象を指定
--system: 全てのユーザ、リポジトリに対する設定ファイル(/etc/gitconfig)
--global: 現在のユーザに対する設定ファイル(~/.gitconfig)
--local: 現在のリポジトリに対する設定ファイル([repository path]/.git/config)


構成の設定/変更
$ git config [key] [value]

構成の削除
$ git config --unset [key]

構成(key)の参照
$ git config [key]

構成(list)の参照
$ git config -l (or --list)


とりあえず、個人情報設定だけは最初にしておいた方がよい(Logに使用される)
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

merge, comment 等で使用するエディタを変更する場合(デフォルトはvi)
$ git config --global core.editor emacs


参考

No comments:

Post a Comment