輸入 git commit -m "註解"
此時會出現如下的訊息
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'webadmin@webadmin-virtual-machine.(none)')
這時就要輸入
git config --global user.email "正確的電子郵件"
git config --global user.name "正確的帳號"
然後接著做
git add .
git commit -m “這是我的更新”
git push -u origin master (第一次)
git add .
git commit -m “這是我的更新”
git push (第二次以上)
沒有留言:
張貼留言