Posts

Showing posts from April, 2010

Setup SVN Local Repository - simple

Image
Create reposity folder. "C:\SVNRepository\new". Right click, select "TortoiseSVN\Create repository here". Select folder that you want to be a SVN folder. Using new folder is better, "D:\new". Create three folders: "trunk", "branches", "tags". Go back to parent and select "D:\new" folder. Right click, select "TortoiseSVN\Import...". On the "URL of repository:" editbox, type " file:///C:/SVNRepository/new ". Click "OK". Right click, select "SVN Checkout..." On the "URL of repository:" editbox, type " file:///C:/SVNRepository/new ". Click "OK". Then, click "Yes". If you used new folder, then copy all your files in it. Finally, select "D:\new". Right click, select "SVN Commit". Add all files and click "OK". Done. All your files are controlled by SVN. For more details, please refers to http://e7fe...