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