控制台日志错误:
please tell me who you are
我运行这个:
git config _ _global user.email"you@example.com"
git config _ _global user.email"you@example.com"
进行设置。您的帐户的默认身份。
省略_ _ global
以仅在此存储库中设置身份。
答案 0 :(得分:1)
尝试一下:
git config --global user.name "John Doe" // config name, don't for your question
git config --global user.email johndoe@example.com
使用--global
的{{1}}盗版
选中Getting Started - First-Time Git Setup
如果仅要为该存储库设置,则应修改_ _global
。
.git/config
设置全局配置,而不仅仅是一个存储库。