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
Post a Comment