我在我的Django网站的Procfile文件中进行了更改。第一次,我没有将Procfile
大写,所以我使用git rm procfile -f
删除了旧文件,然后键入git add Procfile
但是我收到了以下错误消息:
fatal: pathspec 'Procfile' did not match any files
如何将Procfile添加回项目?我意识到这是我的一个愚蠢的错误,但我想学习如何修复它,并继续这个项目。谢谢。
答案 0 :(得分:0)
你说你正在使用Ubuntu,所以我假设你的文件系统区分大小写。
git checkout HEAD Procfile # undo deleting the Procfile
git mv Procfile procfile # rename the file to lowercase and stage it
git commit # commit your changes
git rm procfile -f
从您的文件系统中删除procfile
并暂存其删除(尽管未提交更改)。 git add Procfile
尝试将名为Procfile
的文件添加到您的暂存区域,但它似乎不存在。