I’ve seen people recommend that all developers set up a symlink on their machine from C:\project\.git\rr-cache to a shared folder \\server\rr-cache.
However, it would seem more convenient to share the folder by including it in the git repository itself, if that is possible. I’ve seen people mention this solution, but not actually how to do it.
Any ideas?
It can be shared via a dedicated branch. You want to stop if there is a conflict on that branch and resolve it as it means that there were attempts to solve the same conflict in 2 different ways. Needless to say, that will be the exception to the rule.
For the others on this question, google “Branch per Feature” to see where this is useful.
Hooks can automate syncing the common rr-cache branch.
Here is what you need to automate. rereresharing is an example branch that you are merging to, rr-cache is a branch that stores the resolutions; all these steps worked without issue:
You are now ready to do the same merge and you will have your conflict resolved.