Version controlling is one of the most important concept in Software Development. It allow you to track all the version of files, folders among different team members in a very easy way.
By the way, nowaday cloud becomes very popular with us. I’m pretty sure that everyone has at least one cloud storage.
In this post, I’ll show you how to use your cloud storage as a SVN repository. FYI, I’ll use Dropbox in this post. If you haven’t register, you can sign up here: https://db.tt/nRWfkXgc
1. Set up environment
Firstly, you need to download TortoiseSVN.
Then, register a Dropbox account and install Dropbox on your computer.
2. Create repository
Open Dropbox folder and create new folder. Right click select TortoiseSVN –> Create repository here…
It will create a repository for you and show the result dialog with the highlight link to created repository:
Now, you have a repository ready for use :)
3. Share repository
To provide permission for your teammate to access the repository, you need to login to dropbox website, navigate to repository folder and select Share function.
Type your teamates’ email, select their permission and Share folder.
As you can see here, I use the Basic account so that I cannot provide “view permission” for my teammates. You need to upgrade your account to enable this.
4. Enjoy!
Everything’s done. Now you can start your project, use TortoiseSVN as normal to manage all your source code and document.
Check out
Commit
Update
Hope you enjoy this post :)