Changes between Version 4 and Version 5 of DeveloperStartPage
- Timestamp:
- Mar 20, 2009, 11:00:50 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperStartPage
v4 v5 1 == Subversion Access==1 == Getting Started as a Developer == 2 2 3 Start by setting up and learning the tools. Check out a copy via Annonymous Access. Test run the code. Find something smallish that you want to do, change it, test it thoroughly. Create a diff and post it with a ticket and/or email us. 3 4 4 * Anonymous Access 5 This command will checkout a copy, you can try it, make changes and generate diffs but not commit. 6 {{{ 7 svn co http://gnumims.org/svn/gnumims/trunk 8 }}} 9 * SVN+SSH Access 10 You will need to generate a key pair. 11 {{{ 12 ssh-keygen -t dsa -f username_dsa 13 }}} 14 Two files will be created '''username_dsa''' is your '''private key''', keep it safe, use it for access. The file '''username_dsa.pub''' is your '''public key''', email a copy of this to us so we can add it to /home/svnuser/.ssh/authorized_keys. 5 RequiredTools 15 6 16 The private key is used like this in: ~/.subversion/config 17 {{{ 18 svnuser = /usr/bin/ssh -l svnuser -i ~/.ssh/svnuser_dsa 19 }}} 20 then test: 21 {{{ 22 svn list svn+svnuser://gnumims.org/gnumims/ 23 }}} 24 checkout: 25 {{{ 26 svn co svn+svnuser://gnumims.org/gnumims/trunk gnuMimsTrunkHead 27 }}} 7 SubversionAccess