My team works in disconnected mode. i.e. They develop the applications and use SVN inside the company network to manage versioning for the code.
I am sitting in customer's office with no direct access to my company's network from customer machines. I maintain my own SVN where I checkin the code drop received from my team daily and also make changes to code.
I face two issues in this mode of operation.
- If my team deletes / renames some files, and I simply paste the new code received from my team over my working copy.. the deleted files remain in my working copy.
- To avoid the issue one.. I asked them to send me patch file. Patch file worked with better success rate but it failed to address Binary files. So if my team adds new images / xls templates etc into the codebase, I don't get them via patch file. 2.
Thus, I have started feeling that two disconnected SVN repositories is not the right solution for my situation.
- Have you guys been in this situation before?
- What did you do?
- Is there something in SVN that can help me for this?
- OR is there another version control system that would help me get over this issue?
- If yes, can you point me to relevant commands in the VCS?
Free alternatives are preferred.
git-svnwould be a good place to start, as it looks like a few answerers have said. – MatrixFrog Jul 28 '11 at 18:46