我今天正在学习git。我跟着this book。 它要求我做三个操作:
git add *.c # my file name
git add README
git commit -m 'initial project version'
我做了1次和3次成功,但是当我做了2次,我的 终端说
pathspec 'README' did not match any files
。
为什么呢?怎么解决?我正在使用Ubuntu 13.10
答案 0 :(得分:3)
你需要有一个README
文件才能添加它以供git跟踪。尝试使用您选择的文本编辑器创建README
文件,或者使用touch README
创建虚拟文件。然后你的git add README
应该会成功。