I'm using subgit for two-way sync of an SVN and a Gitlab repo, through intermediate repository (like explained in official docs for connecting to Github. That's a part of a very slow transition process from current SVN to Git.
I don't know if my issue is related to this specific case, but I noticed that SubGit is also synchronizing the properties set on the root folder - those properties being some lock timestamps set up by Subgit itself (like subgit:lock 2018-02-12T17:00:24.067
). Those properties are completely irrelevant and not needed as far as SVN side developers are concerned.
The properties are only moved from Git side to SVN. When coming from SVN, there's nothing extraordinary coming in.
Is there a way of preventing SubGit from doing that? I do already use the sync-filtering in the config
file, but only for some specific files. How would I do the same for the properties?
Note: For those interested, my scenario was a bit specific: SVN repo is behind VPN, while Gitlab is on a live server, which doesn't have the access to that VPN.
The sync was done through local machine (which had the VPN access) as a proxy.
And it all needed to keep accepting the commits from both SVN and Git(lab) side.