developer.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 stuff, and finally, you will need to send me the
  12. username you have selected, an ssh key, and the email address where you prefer
  13. email to be sent (I will forward any email sent to you, but not store it).
  14. <p>
  15. Note that if you would prefer to keep your communications with me
  16. private, you can encrypt your email using my
  17. <a href="http://www.codepoet.org/andersen/erik/gpg.asc">public key</a>.
  18. <p>
  19. Once you are setup with an account, you will need to use your account to
  20. checkout a copy of uClibc from Subversion:
  21. <pre>
  22. svn list svn+ssh://username@svn.uclibc.org/svn/trunk/uClibc</pre>
  23. <br>
  24. It goes without saying you must change <em>username</em> to your own
  25. username...
  26. <p>
  27. You can then enter the newly checked out uClibc directory, make changes, check
  28. your changes, diff your changes, revert your changes, and and commit your
  29. changes usine commands such as:
  30. <pre>
  31. svn diff
  32. svn status
  33. svn revert
  34. svn commit</pre>
  35. <p>
  36. For additional detail on how to use Subversion, please visit the
  37. <a href="http://subversion.tigris.org/">the Subversion website</a>.
  38. You might also want to read online or buy a copy of <a
  39. href="http://svnbook.red-bean.com/">the Subversion Book</a>...
  40. <!--#include file="footer.html" -->