문제

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

도움이 되었습니까?

해결책

  • First git rm to remove all existing parts of the module and then git 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

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top