php remote development workflow: git, symfony & hudson

ox1982

New Member
Edited: (after seeing Luke's answer)I'm looking to develop a website and all the work will be done remotely (no local dev server). The reason for this is that my shared hosting company a2hosting has a specific configuration (symfony,mysql,git) that I don't want to spend time duplicating when I can just ssh and develop remotely or through netbeans remote editing features.My question is how can I use git to separate my site into three areas: live, staging and dev. Here's my initial thought:public_html (live site and git repo)
testing: a mirror of the site used for visual tests (full git repo)
dev/ticket# : git branches of public_html used for features and bug fixes (full git repo) Version Control with git:Initial setup: \[code\]cd public_html git init git add * git commit -m
 
Back
Top