Site updated at 2016-08-22 08:21:42 UTC

This commit is contained in:
Travis CI 2016-08-22 08:21:43 +00:00
parent f9d65cbe57
commit 4acb07bf8e
559 changed files with 18878 additions and 21688 deletions

View file

@ -92,16 +92,16 @@
<p>Improvements, fixes, and new features to Home Assistant should be submitted one feature at a time using GitHub <a href="https://help.github.com/articles/using-pull-requests">Pull Requests</a>.</p>
<ol>
<li>From your fork, create a new branch to hold your changes<br />
<code>git checkout -b some-feature</code></li>
<li>From your fork, create a new branch to hold your changes
<code class="highlighter-rouge">git checkout -b some-feature</code></li>
<li>Make the changes you want, create a <a href="/developers/add_new_platform/">new platform</a>, develop a <a href="/developers/creating_components/">new component</a>, or fix <a href="https://github.com/home-assistant/home-assistant/issues">issues</a>.</li>
<li><a href="/developers/development_testing/">Test your changes</a> and check for style violations</li>
<li>Commit the changes if all <a href="/developers/development_checklist/">musts</a> are covered.<br />
<code>git add .</code><br />
<code>git commit -m "Added some-feature"</code></li>
<li>Commit the changes if all <a href="/developers/development_checklist/">musts</a> are covered.
<code class="highlighter-rouge">git add .</code>
<code class="highlighter-rouge">git commit -m "Added some-feature"</code></li>
<li>Consider to add tests to ensure that the code works.</li>
<li>Push your committed changes back to your fork on GitHub<br />
<code>git push origin HEAD</code></li>
<li>Push your committed changes back to your fork on GitHub
<code class="highlighter-rouge">git push origin HEAD</code></li>
<li>Follow <a href="https://help.github.com/articles/creating-a-pull-request/">these steps</a> to create your pull request.</li>
<li>Check for comments and suggestions on your Pull Request and keep an eye on the <a href="https://travis-ci.org/home-assistant/home-assistant/">CI output</a>.</li>
</ol>