Sameer Anand
Sameer Anand

Reputation: 323

CakePHP - gitignore

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

Answers (1)

VonC
VonC

Reputation: 1324737

The .gitignore file won't prevent a git repo to be updated (clone or pull).

And any important file should be:

  • either versioned (and therefore pulled, even if that same file is in a .gitignore)
  • or rebuild automatically

Upvotes: 1

Related Questions