I just migrated a large svn repo to git and started using gitflow. It worked like a charm but now I'm thinking about splitting that big repo into a number of smaller ones.
Let's supposse the repo directory tree is as follows:
/repo
- libs
- apps
-- app 1
-- app 2
And we want to split it into three repos, one with the core structure (libs and apps directories) and the other two with the apps directories.
If I use git subtree to split like that will I be able to use git flow individually in each part or I'll have to use it globally?
PS: This is my first question in stackoverflow, please be kind :)