Reputation: 323
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.
Upvotes: 1
Views: 464
Reputation: 1324737
The .gitignore
file won't prevent a git repo to be updated (clone or pull).
And any important file should be:
Upvotes: 1