2013年2月16日土曜日

gitで名前やメルアドを登録してないと親切なメッセージが出る

Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:

    git config --global user.name "Your Name"
    git config --global user.email you@example.com

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author

コミットかけたタイミングでこんなメッセージを表示してくれます。
ちなみに自動で設定された名前は
Author: nekomatu <nekomatu@nekomatu-ThinkE11.(none)>

これでは恥ずかしくてgit-pullできません。直さなきゃいけないのですが、やり方が出てますね。
git-commit amendは直前のコミットを修正するオプションです。

0 件のコメント:

コメントを投稿