git.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--#include file="header.html" -->
  2. <h3>Git Access</h3>
  3. The buildroot repository can be browsed online through cgit at
  4. <a href="http://git.buildroot.net/buildroot/">http://git.buildroot.net/buildroot</a>.
  5. To grab a copy of the repository use
  6. <pre>
  7. git clone git://git.buildroot.net/buildroot</pre>
  8. Or if you're behind a firewall blocking git:
  9. <pre>
  10. git clone http://git.buildroot.net/git/buildroot.git</pre>
  11. <p>
  12. Please use the native git protocol if at all possible, as it's a lot
  13. more efficient than HTTP.
  14. <p>
  15. If you are not already familiar with using Git, we recommend you visit <a
  16. href="http://git-scm.org">the Git website</a>.
  17. <p>
  18. Once you've checked out a copy of the source tree, you can update your source
  19. tree at any time so it is in sync with the latest and greatest by entering your
  20. buildroot directory and running the command:
  21. <pre>
  22. git pull
  23. </pre>
  24. Because you've only been granted anonymous access to the tree, you won't be
  25. able to push your changes to the repo. Changes can instead be submitted for
  26. inclusion by posting them to the buildroot mailing list or to the <a
  27. href="https://bugs.uclibc.org/">Bug and Patch Tracking System</a>.
  28. <!--#include file="footer.html" -->