我已经在开发机器中删除了index.html。我检查了github的变化。然后我部署,它将index.html添加到我的公共目录。为什么呢?!
答案 0 :(得分:3)
好的:
git commit -m "comment"
不会从你的git repo中删除文件。
执行:
git commit -a -m "comment"
你也可以这样做:
git rm path/to/file
git commit -m "comment"
答案 1 :(得分:0)
或者您可以git add -u .
排队已删除的文件,然后提交