我正在尝试在项目中练习包含git但是当我尝试提交时我得到了这个错误我是新的并且不知道它是指什么或如何修复它。
*** Please tell me who you are. Run git config --global user.email "[email protected]" 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 'john@LAPTOP-8GKLVF71.(none)')
首次安装git时,您必须设置用户名和电子邮件地址。 Git将这些用于提交消息等。
如果你仔细阅读错误,git会告诉你该怎么做。
在命令行上,运行以下命令:
git config --"your email address"
git config --"your name"