本文主要是介绍$ git add hello.txt fatal: pathspec 'hello.txt' did not match any files,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
$ git add hello.txt
fatal: pathspec 'hello.txt' did not match any files
出现上述错误,解决方法:在文件夹下自己先建一个.txt文件,再add即可,或者使用
touch hello.txt
再
git add hello.txt
即可。
不过为什么用notepad++创建就不行呢?
克隆GitHub上的项目:我使用的是http方式,具体见:
https://blog.csdn.net/qq_37606901/article/details/80714732
这篇关于$ git add hello.txt fatal: pathspec 'hello.txt' did not match any files的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!