Eric Andersen | 6047ae3 | 2005-02-09 03:52:46 +0000 | [diff] [blame] | 1 | <!--#include file="header.html" --> |
| 2 | |
| 3 | |
| 4 | <h3>Subversion Read/Write Access</h3> |
| 5 | |
| 6 | If you want to be able to commit things to Subversion, first contribute some |
| 7 | stuff to show you are serious. Then, very nicely ask <a |
| 8 | href="mailto:andersen@codepoet.org">Erik Andersen</a> if he will set you up |
| 9 | with an commit access to the Subversion repository. To access Subversion, you |
| 10 | will want to add the following to set up your environment: |
| 11 | |
| 12 | <p> |
| 13 | |
| 14 | To obtain commit access, you will need to demonstrate you are serious by |
| 15 | submitting a few good patches first. Then, you will need to select a username |
Eric Andersen | f46f1b4 | 2005-09-02 14:10:47 +0000 | [diff] [blame] | 16 | to use when committing changes to SVN, you will need to send me the username |
| 17 | you have selected, you must send me your preferred contact email address, and |
| 18 | finally, you must send me an ssh version 2 DSA key with 1024 bits (the default) |
| 19 | or more. If you do not currently have an ssh version 2 DSA key, you can |
| 20 | generate a key using the command<pre>ssh-keygen -t dsa</pre> This will |
Bernhard Reutner-Fischer | 6ab402c | 2005-09-20 20:32:02 +0000 | [diff] [blame] | 21 | create the files <pre>/home/<USERNAME>/.ssh/id_dsa |
Eric Andersen | f46f1b4 | 2005-09-02 14:10:47 +0000 | [diff] [blame] | 22 | /home/<USERNAME>/.ssh/id_dsa.pub</pre> You must then send the content |
| 23 | of 'id_dsa.pub' to me so I can setup your account. The content of 'id_dsa' |
| 24 | should of course be kept secret. |
Eric Andersen | 6047ae3 | 2005-02-09 03:52:46 +0000 | [diff] [blame] | 25 | |
| 26 | <p> |
| 27 | |
| 28 | Note that if you would prefer to keep your communications with me |
| 29 | private, you can encrypt your email using my |
| 30 | <a href="http://www.codepoet.org/andersen/erik/gpg.asc">public key</a>. |
| 31 | |
| 32 | <p> |
| 33 | |
| 34 | Once you are setup with an account, you will need to use your account to |
Eric Andersen | 0762364 | 2005-02-09 06:41:13 +0000 | [diff] [blame] | 35 | checkout a copy of BusyBox from Subversion: |
Eric Andersen | 6047ae3 | 2005-02-09 03:52:46 +0000 | [diff] [blame] | 36 | |
| 37 | <pre> |
Eric Andersen | 8063d5c | 2005-02-09 18:25:10 +0000 | [diff] [blame] | 38 | svn list svn+ssh://username@svn.uclibc.org/svn/trunk/busybox</pre> |
Eric Andersen | 6047ae3 | 2005-02-09 03:52:46 +0000 | [diff] [blame] | 39 | <br> |
| 40 | It goes without saying you must change <em>username</em> to your own |
| 41 | username... |
| 42 | <p> |
| 43 | |
Eric Andersen | 0762364 | 2005-02-09 06:41:13 +0000 | [diff] [blame] | 44 | You can then enter the newly checked out BusyBox directory, make changes, check |
Eric Andersen | 6047ae3 | 2005-02-09 03:52:46 +0000 | [diff] [blame] | 45 | your changes, diff your changes, revert your changes, and and commit your |
| 46 | changes usine commands such as: |
| 47 | |
| 48 | <pre> |
| 49 | svn diff |
| 50 | svn status |
| 51 | svn revert |
| 52 | svn commit</pre> |
| 53 | |
| 54 | <p> |
| 55 | |
| 56 | For additional detail on how to use Subversion, please visit the |
| 57 | <a href="http://subversion.tigris.org/">the Subversion website</a>. |
| 58 | You might also want to read online or buy a copy of <a |
| 59 | href="http://svnbook.red-bean.com/">the Subversion Book</a>... |
| 60 | |
| 61 | |
| 62 | <!--#include file="footer.html" --> |
| 63 | |
| 64 | |