Hello, people. I hope you can help me.
In our development process we have a unix based file server with SFTP access (let’s call it A). This server store a large numer of xslt files we are working on.
The thing is that these files aren’t under version control system. So you can imagine this nightmare. We can’t setup repository on this server, we can only perform create/read/update/delete operations with these files.
So we have to find another approach. There is another server with full access (let’s call it B). Is it possible to setup repository on B with background logic that on every repository operation will perform download/merge/upload operations related to server A?
There are two problems more:
- All files on A lay in the same directory and we want them to be structured on server B in a folder hierarchy.
- Files on A can be changed by another team.
We are using Subversion. But maybe it is possible to realize rhs with another version control systems?
Thanks, Vova.