Hi, all
I have two manifests, A and B. Some projects exist only in A or only in B, some projets exist in both A and B. git init -m A then git init -m B in different directories is a choice, but not the best, because it waste many disk space for these projects which exist in both A and B.
git have a command named "git worktree", it can make different branches stay in different directories, but share the same git object dir.
I wonder does repo have function like this to share git object dir between A and B?
Regards,
Li