我的SO是Ubuntu 18.04。
我已经在/ opt / lampp / htdocs / projects / myProject中创建了一个项目。
我想在其上实现版本控制,所以我在该目录中进行了git init
。
但是后来我做了git add .
和git commit -m 'Your message here'
,我添加了一个我不想推送到远程仓库的文件夹。所以我做了git reset
和rm -rf .git && git init
。
此后,我仅添加了我想要的文件夹:git add frontEnd
然后:git commit frontEnd "front end commit"
现在出现错误:
pathspec 'front end commit' did not match any file(s) known to git.
(我还没有做任何拉或推)
答案 0 :(得分:0)
您的git commit命令不正确。尝试执行以下命令
git commit -m "front end commit"