无法将Procfile添加到Git Repo

时间:2015-02-19 14:47:03

标签: git

我在我的Django网站的Procfile文件中进行了更改。第一次,我没有将Procfile大写,所以我使用git rm procfile -f删除了旧文件,然后键入git add Procfile但是我收到了以下错误消息:

fatal: pathspec 'Procfile' did not match any files

如何将Procfile添加回项目?我意识到这是我的一个愚蠢的错误,但我想学习如何修复它,并继续这个项目。谢谢。

1 个答案:

答案 0 :(得分:0)

你说你正在使用Ubuntu,所以我假设你的文件系统区分大小写。

如何恢复Procfile并重命名

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的文件添加到您的暂存区域,但它似乎不存在。