我刚刚在 Windows XP Pro 上安装了 Git,并尝试将其应用到我的项目中。
我正在尝试对旧目录结构进行 git-ize:
C:\src>git init
C:\src>git add *.c
C:\src>git commit -m 'initial project version'
error: pathspec 'project' did not match any file(s) known to git.
error: pathspec 'version'' did not match any file(s) known to git.
知道问题可能出在哪里吗?这个错误是什么意思?
“git status”显示许多“新文件:”行,所以我不知道为什么它说它不匹配任何东西。
答案1
尝试使用双引号表示“初始项目版本”
答案2
我遇到了同样的问题,BloodPhilia 的答案有效!
我只是想将我的一个项目移动到 GitHub,所以我只是从我的 GitHub 存储库设置中复制了命令:
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/YuriyHorobey/lp.git
git push -u origin master
(touch 在 Windows 下不起作用,只需创建一个 README 文件)并且这个失败了:
git commit -m 'first commit'
我已经替换'
并且"
它有效!