Permalink
Comparing changes
Open a pull request
- 1 commit
- 1 file changed
- 0 commit comments
- 1 contributor
Commits on Mar 17, 2018
* fix link to coding guidelines * link to wiki on how to create/submit patches * mention Gerrit for code review
Unified
Split
Showing
with
3 additions
and 3 deletions.
- +3 −3 content/development/faq.html
| @@ -35,20 +35,20 @@ <h3>Do you have any easy introductory tasks for me?</h3> | ||
| <a name="coding-guidelines"></a> | ||
| <h3>Do you have coding guidelines?</h3> | ||
|
|
||
| <p>Yes, we do. Please check out the <a href="/development/coding_guidelines">Haiku Coding Guidelines</a> document. [<a href="#top">top</a>]</p> | ||
| <p>Yes, we do. Please check out the <a href="/development/coding-guidelines">Haiku Coding Guidelines</a> document. [<a href="#top">top</a>]</p> | ||
|
|
||
| <a name="patches"></a> | ||
| <h3>How do I create and submit patches?</h3> | ||
|
|
||
| <p>After having <a href="/guides/building">checked out our repository</a> and <a href="/guides/building/get-source-git">configured git</a> you can modify the source files. Always check if your modifications compile without errors/warnings. To create a patch, start the Terminal, navigate to the root folder of your repository. After locally committing your changes with <code>git commit -a</code> (adding a short description of the changes, maybe including the ticket number ('#1234') you're fixing), run <code>git format-patch origin</code>. You'll find the patch in the root folder of your repository.<br /> | ||
| To submit your patch, either attach the file to an appropriate <a href="https://dev.haiku-os.org">bug report</a> or send it to our <a href="https://www.freelists.org/list/haiku-development">development mailing list</a>. [<a href="#top">top</a>]</p> | ||
| <p>After having <a href="/guides/building">checked out our repository</a> and <a href="/guides/building/get-source-git">configured git</a> you can modify the source files. Always check if your modifications compile without errors/warnings. To create and submit a patch, please see the <a href="https://dev.haiku-os.org/wiki/CodingGuidelines/SubmittingPatches">development wiki on patches</a>. [<a href="#top">top</a>]</p> | ||
|
|
||
| <a name="dev-tools"></a> | ||
| <h3>What development tools do you use?</h3> | ||
| <ul> | ||
| <li>A slightly modified version of <a href="http://www.perforce.com/jam/jam.html">Jam</a> as our building tool. It is included in Haiku's official releases and nightly images. If you are cross-compiling Haiku, you will need to <a href="/guides/building/jam#build_jam">build jam from source</a>.</li> | ||
| <li><a href="http://git-scm.com">Git</a> as our version control system.</li> | ||
| <li><a href="https://dev.haiku-os.org">Trac</a> as our project management and bug/issue tracking system.</li> | ||
| <li><a href="https://review.haiku-os.org/">Gerrit</a> for code review.</li> | ||
| </ul> | ||
| <p>[<a href="#top">top</a>]</p> | ||
|
|
||