In this repo i store all my websites, each in a different branch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.3 KiB

6 years ago
6 years ago
  1. <html>
  2. <head>
  3. <title>
  4. CLINL Kernel
  5. </title>
  6. <meta name="description" content="The official website of the CLINL-Kernel. CLINL stands for C++-LINL is not Linux and was an initiative to renew Linux, started in 2018">
  7. <meta name="keywords" content="CLINL, Kernel, GNU">
  8. <meta name="author" content="Ludovic Lagouardette, Maximilian Wittmer, OxFFFFFFFFF">
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/4.0.2/bootstrap-material-design.css"
  10. \>
  11. <link rel="stylesheet" href="style.css" \>
  12. </head>
  13. <body class="container page">
  14. <div class="row navbar">
  15. <a href="index.html" class="col-xs-3 navbut">Home</a>
  16. <a href="https://kernel.clinl.org" class="col-xs-3 navbut">Repository</a>
  17. <a href="aboutus.html" class="col-xs-3 navbut">About us</a>
  18. <a href="contribute.html" class="col-xs-3 navbut">Contribute</a>
  19. </div>
  20. <div class="par">
  21. There are a few criteria that you have to meet in order to contribute. Make sure that you comply to all of them!
  22. <ul>
  23. <li>Knowledge of Modern C++</li>
  24. <li>Willingness to learn</li>
  25. <li>Knowledge of Backend C++</li>
  26. </ul>
  27. <span class="big">If you think that you could help us</span>, you will in a first time need to set up your local fossil repository.
  28. On a terminal, type:
  29. <div class="code">
  30. $>fossil clone https://kernel.clinl.org ./clinl.fossil
  31. <br> $>fossil open ./clinl.fossil
  32. </div>
  33. Then, compile a cross-compiler according to
  34. <a href="https://wiki.osdev.org/GCC_Cross-Compiler">OSDevWiki</a>. Set the makefile up as you wish, in order for it to work on your machine.
  35. <br> then, you can contribute. Edit the files just like you would edit them on a github repository. Once you are done,
  36. <br>
  37. <div class="code">
  38. $>make clean
  39. <br>$>fossil addremove
  40. <br>$>fossil commit -m "your MEANINGFUL commit message"
  41. <br>$>fossil push
  42. </div>
  43. Before pushing you might need to setup an account at kernel.clinl.org
  44. If you are facing any problems, contact us
  45. <a href="mailto:social@clinl.org">here!</a>
  46. </div>
  47. </body>
  48. </html>