iOS developed SVN server 1. SvnServer Address
Create an SVN server yourself, Mac 10.9 has svnadmin by default, so you can use it simply by configuring it.
2. Configure SVN2.1. Create a version library
Open Terminal input command line
mkdir ~/repository
Svnadmin Create ~/repository
2.2. Modify configuration Shift + I for editing
VI Open svnserve.conf, Passwd,authz for editing
svnserve.conf: [General] anon-access = Read auth-access = write password-db = passwd password file a Uthz-db == = Sallyssecret authz: Set permissions [groups] [/== RW
2.3. Start the SVN service
Svnserve-d-R ~/repository
No output is correct.
2.4. Connection Information
Versions Connection:
Address: Svn://localhost (automatically add @harry)
user name: Harry
Password: Harryssecret
3.Use of versions tools
Note:
1. When the project import enters versions (original project without SVN, delete),
Check out: Checkout (checkout after the file can be viewed, you will find one more. svn file)
If it's a team project, you need to download the new code from SVN every day.
2.update project, right---update at least once a day
3. The file Modify , add, delete files
Re-submit after modification
SVN Server for iOS development