Git 初期設定

Gitの初期設定について、作業メモを残しておきます。

ユーザ名の設定

設定

$git config --global user.name "TestUser"

確認

$git config --global user.name
TestUser

メール・アドレスの設定

設定

$git config --global user.email email.test@example.com

確認

$git config --global user.email
email.test@example.com
タイトルとURLをコピーしました