Mobile app version of vmapp.org
Login or Join
Twilah146

: You didn't specified what version control you are using. Easiest way to do cowboy development is to use git for version control and here's how to: make a git repo master branch that has

@Twilah146

you didn't specified what version control you are using. Easiest way to do cowboy development is to use git for version control and here's how to:


make a git repo master branch that has all magento versions in it although not necessary (http://blog.speedupmate.com/post/4063307705/magento-git-mirror)
checkout your dev branch with the version you like to use (git checkout -b dev_branch)
checkout your stage branch from dev branch (git checkout -b stage_branch dev_branch)
checkout your live branch from dev branch (git checkout -b live_branch dev_branch)
on your localhost checkout the dev branch and develop there and if some feature is ready for committing you can commit it and push the changes to your remote repo. If your remote repo is on the same server where your live site then it is all you have to do to get your changes to the server
next step is to move changes to staging and that is just merging stage and dev branch. Stage is the place where you have a replica of live database and client or you can test the development in live like conditions
if your tests are good and changes are approved you can merge your changes from dev to live


On your live server you have staging and live environments checked out from your git repo to the public folders where domains are mapped so those site installations are actually checkouts from your git repo

On your localhost you have a site that is checked out from dev branch and you never checkout live or staging branch there and you don't commit to those branches only to dev branch and not to master, stage or live that way you can push your changes to remote without conflicts

Also a good thing to have a .gitignore file in place that will ignore any files under var, media or pear cache folders so you don't version unnecessary stuff that is unique for each environment. Also its good to ignore any local setup files like local.xml

You can also automate this with fabric , capistrano or git hooks and similar tools

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Twilah146

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme