1

If I plan on deploying my cakePHP application on my server which automatically gets its files from git, should I delete the gitignore file? I do not want necessary files not being uploaded to my server, because then my application won't function correctly.

4

1 回答 1

1

.gitignore文件不会阻止更新 git repo(克隆或拉取)。

任何重要的文件都应该是:

  • 任一版本(因此被拉出,即使同一个文件在 .gitignore 中)
  • 或自动重建
于 2013-11-07T07:24:14.033 回答