Which is the best way to automatically deploy a PHP website using git push?
Correct Answer: Copy over your git directory to your web server. On your local copy, modify your .git/config file and add your web server as a remote. On the server, replace .git/hooks/post-update with an existing script to process the rest of the workflow. Make the script executable.
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More PHP MCQ Questions