mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 10:08:57 +00:00
1.3 KiB
1.3 KiB
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Submit your work | Submit your work as Pull Request for Home Assistant. | 2016-07-01 20:00 | true | false | true | true |
Improvements, fixes, and new features to Home Assistant should be submitted one feature at a time using GitHub Pull Requests.
- From your fork, create a new branch to hold your changes
git checkout -b some-feature
- Make the changes you want, create a new platform, develop a new component, or fix issues.
- Test your changes and check for style violations
- Commit the changes if all musts are covered.
git add .
git commit -m "Added some-feature"
- Consider to add tests to ensure that the code works.
- Push your committed changes back to your fork on GitHub
git push origin HEAD
- Follow these steps to create your pull request.
- Check for comments and suggestions on your Pull Request and keep an eye on the CI output.