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

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

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