I´m working on a project with composer. Composer loads multiple private git repositories. Now I want to working on this repos as well and commit them from the root project, so I load the repos via --prefer-source
.
Everything works fine, except this:
Whenever I execute composer update
it makes a new git clone instead of pull. So I lost all my uncommited changes. Is there a way to get rid of this?
Thanks in advance!