developer.html 2.2 KB

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