git.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/buildroot</pre>
  11. <p>
  12. If you are not already familiar with using Git, we recommend you visit <a
  13. href="http://git-scm.org">the Git website</a>.
  14. <p>
  15. Once you've checked out a copy of the source tree, you can update your source
  16. tree at any time so it is in sync with the latest and greatest by entering your
  17. buildroot directory and running the command:
  18. <pre>
  19. git pull</pre>
  20. Because you've only been granted anonymous access to the tree, you won't be
  21. able to commit any changes. Changes can be submitted for inclusion by posting
  22. them to the buildroot mailing list or to the <a
  23. href="http://bugs.uclibc.org/">Bug and Patch Tracking System</a>.
  24. <!--#include file="footer.html" -->