We are developing a Magento extension, that is stored in a git repository. This is the workflow we are currently using ... and it sucks:
- Clone/pull the remote repository to my local repository
- Copy the extension files from the local repository to my local Magento installation
- Work/edit on my local Magento installation
Copy the extension files from the local Magento installation to the local repository - there are four specific paths we copy:
- app/etc/modules/OurModule_Base.xml
- app/code/local/OurModule
- app/design/adminhtml/default/default/layout/OurModule.xml
- skin/adminhtml/default/default/OurModule
Commit & push
Are there any suggestions for a better workflow where I can just test locally and commit, without worrying about copying files back & forth between folders?
Edit - Modman seems like a viable option, the only trouble is that it doesn't seem to support Windows as far as I could gather.
I guess I might just manually setup a few symlinks.