Changes between Version 7 and Version 8 of SubversionAccess
- Timestamp:
- May 29, 2009, 10:06:55 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SubversionAccess
v7 v8 1 1 = Subversion Access = 2 There are two ways to access subversion. Anonymous is for anyone to get the latest copy of the code (with svn info included) and Developer is the next step if you find yourself regularly contributing to the code. Note the "Browse Source" link above also allows downloading of the trunk folder as a zip file (with no svn info included). 2 There are two ways to access subversion: 3 1. Anonymous Access is for anyone to get the latest copy of the code (with svn info included) 4 1. Developer Access is the next step if you find yourself regularly contributing to the code. 5 6 Note the "Browse Source" link above also allows downloading of the trunk folder as a zip file (with no svn info included). 3 7 4 8 == Anonymous Access == 5 Anyone may checkout a copy , you can try it, make changes to it and generate diffs. But not commit directly with svn. You may email the diffs to us though and this is a good starting point to becoming a developer.9 Anyone may checkout a copy. You can try it, make changes to it and generate diffs, but not commit directly with svn. You may email the diffs to us though and this is a good starting point to becoming a developer. 6 10 {{{ 7 11 svn co http://gnumims.org/svn/gnumims/trunk gnuMimsTrunkHead … … 9 13 10 14 == Developer Access (Custom SVN+SSH) == 11 Developers you willneed to generate a key pair. Where ''!UserName'' is replaced with your name.15 Developers need to generate a key pair. Where ''!UserName'' is replaced with your name. 12 16 {{{ 13 17 ssh-keygen -t dsa -f UserName_dsa … … 18 22 * Email a copy of the public key to us so ''we'' can add it to /home/svnuser/.ssh/authorized_keys on the svn server. 19 23 20 * '''!UserName_dsa''' is your '''private key''', keep it safe and use it for access. 21 * You use the private key like this in: ''' /home/me/.subversion/config'''24 * '''!UserName_dsa''' is your '''private key''', keep it safe and use it for access. 25 * You use the private key like this in: '''~/.subversion/config''' 22 26 {{{ 23 27 [tunnels] 24 customssh = /usr/bin/ssh -l svnuser -i /home/ me/.ssh/UserName_dsa28 customssh = /usr/bin/ssh -l svnuser -i /home/WHATEVER/.ssh/UserName_dsa 25 29 }}} 26 30 … … 28 32 29 33 30 Once we have added your public key then you can try the test bel low. In the mean time please read SubversionUsage and CodingConventions.34 Once we have added your public key then you can try the test below. In the mean time please read SubversionUsage and CodingConventions. 31 35 Test: 32 36 {{{ … … 38 42 }}} 39 43 * TortoiseSVN 40 ''Not tested yet as none of us euse Tortoise''. To generate a key under windows you may need to get Putty. Open Explorer file window, right-click in the file section (get a pop-up), choose: TortoiseSVN -> Settings -> "Network" Pane-> SSH Client:44 ''Not tested yet as none of us use Tortoise''. To generate a key under windows you may need to get Putty. Open Explorer file window, right-click in the file section (get a pop-up), choose: TortoiseSVN -> Settings -> "Network" Pane-> SSH Client: 41 45 {{{ 42 46 C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe -l svnuser -i C:/PATH/TO/UserName_dsa