9
votes
4answers
326 views

WordPress and Git Workflow

I know this question has been asked a thousand times, but I'm really trying to work out how to get the best out of Git when working with WordPress. I've scoured the web and read dozens of articles, ...
0
votes
1answer
243 views

How to Upgrade and Deploy WordPress Install as a Git Submodule? [closed]

I am using a WordPress directory struture similar to Mark Jaquith's WordPress Skeleton, which has WordPress in a separate directory from the content as a submodule: /content /wp /local-config.php ...
13
votes
5answers
2k views

Is Git/GitHub a good WordPress deployment solution?

I'm currently developing my WordPress locally, committing my code to GitHub with Git and then SSHing into my server and doing a "git pull" to update my code. Is this a good option for code deployment ...
1
vote
1answer
116 views

Deploying Updated or New Plugins That Modify the wp_options Table

I have a WordPress site under local version control with Git. I deploy it to the production server using Capistrano. For the initial deployment, I manually import the SQL database to the production ...
1
vote
2answers
392 views

Git beginner: Keeping track of on-server changes

So I'm starting to get to grips with Git (never used any VCS before). Some Git users tell me to only push to production server and never pull from it to my local dev server. That leaves me with this ...