先是按照git的提示
git config --global user.email “you@example.com”
git config --global user.name “Your Name”
进行设置,结果发现还是报错,最后找到解决方案如下:
git init
git config user.name “Your Name”
git config user.email “you@example.com”
git add *
git commit -m “commit message”
按如上步骤操作,最后成功commit
8679

被折叠的 条评论
为什么被折叠?



