What is the difference between the following while using Tortoise SVN
- SVN Checkout (in context menu)
- Export (in context menu)
- Save as (in Repo Browser)
- Copy to.. (in Repo Browser)
- Copy to working copy.. (in Repo Browser)
What is the difference between the following while using Tortoise SVN
SVN Checkout will connect to your SVN repository and fetch a working copy. In a working copy, you can make changes to the files and when you do SVN Commit, the changes will be sent to the SVN repository. And SVN Update will update your working copy with the changes committed by other devlopers.
SVN Export can either connect to the repo or export a working copy on your local computer. Once you export a folder, you can no longer track changes made to it. (This will simply remove the hidden .svn folders).