How can I deploy an existing PHP project using Git and what is the best free git repository?
2
-
Is your question how to store php code in git or deploy it to the server with git?Amir Raminfar– Amir Raminfar2011-07-05 16:58:13 +00:00Commented Jul 5, 2011 at 16:58
-
both. I've used git only with rails project but never with phptanzio– tanzio2011-07-12 16:46:49 +00:00Commented Jul 12, 2011 at 16:46
Add a comment
|
4 Answers
Github is generally considered best.
When I last did something like that, I simply SSH'd to the server did git clone and then had cron run a pull and update from my production "branch". You'll want to set up your git repository with your public key for the server, but instructions for that are pretty simple (I found the Windows one right off (scroll to the bottom), but it still works).
Comments
If you need a private repo for free you should use BitBucket.
Check out this PHP script for deploying from Git repositories: