【发布时间】:2019-12-01 02:17:03
【问题描述】:
cd Desktop
mkdir Story
cd Story
touch chapter1.txt
atom .
git init
git add chapter1.txt
git status
git commit -m "complete chapter 1"
它向我显示此错误消息:
***请告诉我你是谁。
运行
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
设置您帐户的默认身份。
省略 --global 以仅在此存储库中设置身份。
致命:无法自动检测电子邮件地址(得到 'Hi@DESKTOP-EL5QS59.(none)')
【问题讨论】:
标签: git git-bash git-commit