How do I take a copy of my working copy to share with others?
- by Martin
I did a ton of changes to our code and before I commit, I would like a friend to review. Is there a way with SVN to take a copy of my working copy (to bundle everything in a package) and apply the changes I have made so far to another machines without having to commit?
In the past, with another source control system, I was able to do the following to "pack" and "unpack" my changes. Is there anything similar with SVN?
sourcecontrol.exe pack myChanges.pack
sourcecontrol.exe apply myChanges.pack
Thanks!