I’m install modman in my personal computer to development a custom extension in Magento with the correspondly maintenance of this.
I want to know the correct workflow between Magento Module and Modman. I have one doubt in the process to update my extension.
To the complet understanding, I’ll describe the workflow under my point of view:
-
Create My git repository for my extension
in the server side:
git init bare
-
Clone this repository and create the skeleton to modman script
nano modman:
code app/code/scope/company/Module/
compamy_module.xml app/etc/modules/company_module.xml -
update the repository
git add/commit/push
-
In my free install of Magento create new branch
git checkout -b moduleName
-
Clone the extension in my instalation
modman clone git@x.x.x.x:/route/to/module/repository
Ok, in this point I have a good enviorment to work with my Magento module extension, but I have the next doubt. Who I can update the module repository working from the magento free installation??
I try
modman update moduleName
but I don’t update the repository of the extension, How Is the correct Workflow?
Should I modify the extension repository?
I think that can work from the Magento clean installation and update the Magento module repository from that….
take this: