Mercury project overlaps?

I have a solution for the site / backoffice that works with this structure:

/bo         // mercurial repo
/site       // site files
/www/admin  // mercurial repo
/var        // site specific vars

Backoffice works smoothly on multiple sites, and so all projects have a mercury repo and code contributions made for project A, which always play on projects B and C. It works well so far, but now I feel like I should also do repo to the root directory.

Is it possible? Can I have a repo on / excluding both / bo and / www / admin and do they all work well together or should I expect a problem?

+3
source share
1 answer

You can set up the repo in the root and

  • declare /siteand /varas SubRepos ,
  • /bo /www/admin

, , , .

+1

Source: https://habr.com/ru/post/1752767/


All Articles