git - Subtree merge into multiple directories -


i have 2 repositories , 1 of them (shared) contains shared libraries used code in other 1 (main).

main +--- foo |    +--- shared |    +... +----bar |    +--- shared .    +... 

i have added shared remote local main working copy , i'm trying merge master branches using subtree strategy:

git merge --squash -s subtree shared/master 

this command automagically finds appropriate directory , merge. however, when there more 1 place shared branch should merged into, merges 1 place (looks it's taking first 1 in alphabetical order).

is there way force continue , merge matching places?


Comments

Popular posts from this blog

javascript - How to name a jQuery function to make a browser's back button work? -

python - Django-easy-pdf: xhtml2pdf reporting reportlab 2.2+ is required, but 3.0 installed -

collision detection - C++ library for mesh to mesh intersection: what is available? -