Re: [PATCH/RFC 0/2] bisect per-worktree
From: Junio C Hamano <hidden>
Date: 2016-06-15 23:06:03
David Turner [off-list ref] writes:
I think making this configurable is (a) overkill and (b) dangerous. It's dangerous because the semantics of which refs are per-worktree is important to the correct operation of git, and allowing users to mess with it seems like a big mistake. Instead, we should figure out a simple scheme and define it globally. I think refs/worktree -> refs/worktrees/[worktree]/ would do fine as a fixed scheme, if we go that route.
OK.
We would need two separate views of the refs hierarchy, though: one used by prune (and pack-refs) that is non-mapped (that is, includes per-worktree refs for each worktree), and one for general use that is mapped. Maybe this is just a flag to the ref traversal functions.
True. Alternatively we could just view refs/worktree/* as if they are symbolic refs that point into refs/worktrees/$my_worktree/*, but that would imply making the latter always visible to all worktrees, which would hurt when people use it to interact with outside world (namely, refs in other people's private area should probably not be advertised).
As I understand it, we don't presently do many transactions that include both pseudorefs or per-worktree refs and other refs. And we definitely don't want to move pseudorefs into the database since there's so much code that assumes they're files. Also, the vast majority of refs are common, rather than per-worktree. In fact, the only per-worktree refs I've seen mentioned so far are the bisect refs and NOTES_MERGE_REF and HEAD. Of these, only HEAD is needed for pruning. Are there more that I haven't thought of?
I myself have come up with nothing other than the above. Let's hear from others.
So I'm not sure the gain from moving per-worktree refs into the database is that great.
I am on the same wavelength as you are on this.
There are some downsides of moving per-worktree refs into the database: ...
All good points except #3, which I cannot judge if it is good or bad.
... Simply treating refs/worktree as per-worktree, while the rest of refs/ is not, would be a few dozen lines of code. The full remapping approach is likely to be a lot more.
We may be over-engineering with Michael's and even with the more simpler refs/worktree/* -> refs/worktrees/$mine/* fixed mapping; I tend to agree with you.