Should I copy svn folders when working offsite?
At my current location I can not access our SVN server. I copied my working folder (workplace location) on a DVD and have it on my notebook (home location ) right now.
How should I transfer the changed files to the server? I can't copy the c开发者_JAVA百科omplete project because the connection is too slow.
- Copy only the changed files to the working folder on workplace location and commit the changes to the server
- Copy changed files and svn folders of their parent directory to the wokplace location working folder and commit
You could just create a patch file of your changes. As you seem to be using tortoise, here is info on how to create and apply patches with tortoisesvn. You can also do this using the svn diff command and applying the patch file to another working copy using the patch command.
精彩评论