为什么每次部署index.html文件都会添加到生产中?

时间:2011-11-17 18:55:06

标签: ruby-on-rails ruby deployment capistrano

我已经在开发机器中删除了index.html。我检查了github的变化。然后我部署,它将index.html添加到我的公共目录。为什么呢?!

2 个答案:

答案 0 :(得分:3)

好的:

git commit -m "comment"

不会从你的git repo中删除文件。

执行:

git commit -a -m "comment"

你也可以这样做:

git rm path/to/file
git commit -m "comment"

See doc herehere

答案 1 :(得分:0)

或者您可以git add -u .排队已删除的文件,然后提交