error: pathspec ‘XXX‘ did not match any file(s) known to git 报错解决方法(初次commit提交代码)

开源 0

一、报错原因:

        如果是第一次提交代码,它不认识你

二、解决办法:

需要去设置你的姓名以及邮箱

git config --global user.name "你的名字"git config --global user.email "你的邮箱"

设置完以后再commit提交就不会报错啦!!

也许您对下面的内容还感兴趣: