このエントリーをはてなブックマークに追加

マナーとして、とかいろんな意味で,git入れたら一番最初にすること.

git config --global user.name 'your_name'
git config --global user.email 'your_email@example.com'

結果、~/.gitconfigに以下の行が追加される。

[user]
    name = your_name
    email = your_email@example.com



記事一覧へ