Description
git-remote-gitern/git-remote-gitern
Line 181 in 3da454b
What would be an idea behind "merging"? How exactly would you merge crypted content? What if there's a conflict?
That seems contra-logical. Mirror repo should always be a mirror of remote repo. The whole existence of mirror repo is due to lack in-flight transcoding on the level of git-receive-pack/git-upload-pack. You don't "merge" in git-receive-pack/git-upload-pack, ergo shouldn't merge there. It should be pull --rebase
or actually likely git fetch
(well, you'd know better why the bare repo didn't work for you).
Where "merging" should happen is on the level of local (main) repo. Decrypting should happen into a separate ref, and that ref should be then either merged or rebased to (again, how a normal pull would work).
P.S. Working on getting the thing work with rebased repos.