diff options
author | Angelo Compagnucci <angelo.compagnucci@gmail.com> | 2015-10-13 21:03:29 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-11-23 22:56:59 +0100 |
commit | 97ab48658d574ded87f8af799795ba7ed76f6ba4 (patch) | |
tree | ca69cbb45c1821c6a8fcfe9a220bae3021c1d4e1 /docs/website/git.html | |
parent | a597e3c676948c6c1eb6440c82f19b7460f29192 (diff) | |
download | buildroot-97ab48658d574ded87f8af799795ba7ed76f6ba4.tar.gz buildroot-97ab48658d574ded87f8af799795ba7ed76f6ba4.zip |
docs/website: New website
This patch introduces a new buildroot website based on a modern flat
layout inspired by material design.
Each page of the old website is converted to the new css/layout, the
big bump is in main page which is completely rewritten. Content of
the old website is copied more or less verbatim, planning to add more
content in the future.
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'docs/website/git.html')
-rw-r--r-- | docs/website/git.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/docs/website/git.html b/docs/website/git.html deleted file mode 100644 index 890397592c..0000000000 --- a/docs/website/git.html +++ /dev/null @@ -1,48 +0,0 @@ -<!--#include file="header.html" --> - -<div class="row"> -<div class="col-sm-10 col-sm-offset-1"> - -<h3>Git Access</h3> - -The buildroot repository can be browsed online through cgit at -<a href="http://git.buildroot.net/buildroot/">http://git.buildroot.net/buildroot</a>. -To grab a copy of the repository use - -<pre> -git clone git://git.buildroot.net/buildroot</pre> - -Or if you're behind a firewall blocking git: - -<pre> -git clone http://git.buildroot.net/git/buildroot.git</pre> - -<p> - -Please use the native git protocol if at all possible, as it's a lot -more efficient than HTTP. - -<p> - -If you are not already familiar with using Git, we recommend you visit <a -href="http://git-scm.org">the Git website</a>. - -<p> - -Once you've checked out a copy of the source tree, you can update your source -tree at any time so it is in sync with the latest and greatest by entering your -buildroot directory and running the command: - -<pre> -git pull -</pre> - -Because you've only been granted anonymous access to the tree, you won't be -able to push your changes to the repo. Changes can instead be submitted for -inclusion by posting them to the buildroot mailing list. - -</div><!--/.col-sm-10 --> -</div><!--/.row --> - -<!--#include file="footer.html" --> - |