git.html 1.2 KB

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