My folder structure is:
projects/
- myProject (main repo)
- myProject.fixSomething (worktree)
- myProject.newFeature (worktree)
It seems it is re-indexing everything.
A solution could be using git rev-parse --git-common-dir to get the main repo's path and copy the index from there?
My folder structure is:
projects/
It seems it is re-indexing everything.
A solution could be using
git rev-parse --git-common-dirto get the main repo's path and copy the index from there?