I have a module already installed in the tree and want to replace it by installation via composer.
The magento hackathon composer installed is used.
Also all symlinks created by the installer are excluded via .gitignore
asked Sep 6, 2013 at 9:09
Alex
13.5k20 gold badges85 silver badges169 bronze badges
1 Answer 1
- First
git rmto remove all existing parts of the module and thengit commit - This could also partially be done by adding the module first and use the magento-force option which would already delete most of the files - but this needs some fine tuning using
git rm/ unstaging- Now add the module and make the git commit, add the symlinks to the
.gitignore - push your changes to the git repository
- Now add the module and make the git commit, add the symlinks to the
When the co-developers do an update, in the first step git will delete the old module and then install the new module (after composer update). From this part on, the symlinks are ignored.
Jonathan Day
87610 silver badges21 bronze badges
answered Sep 6, 2013 at 9:09
Alex
13.5k20 gold badges85 silver badges169 bronze badges
-
2Nice question (and answer) ;) The workflow with modman nearly conforms this way. What is really important, is to do a commit after deleting the files, otherwise there will be conflicts in the other developers working-copies later.Anna Völkl– Anna Völkl2013年09月06日 09:22:36 +00:00Commented Sep 6, 2013 at 9:22
default