Access to one mercury repo with different methods

I want to make the same (physically the same) Mercurial repository available via ssh and https (hgwebdir). Are there problems with transactions while pushing ssh users and HTTP users?

+3
source share
1 answer

No, Mercurial is configured for this and will (write) block the repo after the start of the transaction. The second user will just have to wait a bit until their push passes. Simultaneous requests can happen if they are served only by one or the other, so setting up both of them will not cause additional problems.

+5
source

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


All Articles