Subversion Howtos
From How2s
How to get started with Subversion:
Let's assume you have
- A Subversion URL looking something like https://1.2.3.4/subversion/project/trunk
- An username for that remote URL
- A password for that remote URL
- A local computer you use to develop with all your files
This is how you get started:
1.) Go to your local folder and type:
svn checkout https://1.2.3.4/subversion/project/trunk --username yourusername
2.) Add your files
3.) Make changes to your files/add files
4.) Import them to the online repository:
svn import ./ https://1.2.3.4/subversion/project/trunk --username yourusername -m "Initial import"
[edit]
Creating a SVN Repository
svnadmin create SVNrep
in the folder

