Git設定

名前とメールアドレス設定

$ git config –global user.name “名前”

$ git config –global user.email メールアドレス

この設定がGitのコミットログに記録される.

エディタ設定

$ git config –globel core.editor “エディタ”

Proxy設定

$ git config –global http.proxy http://ホスト名:ポート番号

$ git config –global https.proxy http://ホスト名:ポート番号

設定確認

$ git config user.name

$ git config user.email

$ git config core.editor

設定をすべて確認するには次のコマンドを実行する.

$ git config –list

未分類

前の記事

無線LAN
共通

次の記事

Git