diff --git a/atom.xml b/atom.xml index 2a41d3830f..15f6945941 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Testing your work requires tox
to be installed:
If you’re taking a while developing your feature request and would like to catch up with what’s in the current Home Assistant dev branch, you can use git rebase to do so. This will pull the latest Home Assistant changes locally, rewind your commits, bring in the latest changes from Home Assistant and then replay all of your commits on top.
+ +# Run this from your feature branch +$ git fetch upstream dev # to pull the latest changes into a local dev branch +$ git rebase upstream/dev # to put those changes into your feature branch before your changes +
Your feature is done, it looks great and the tests are all passing. What now? Squash your commits, and create a pull request. Squashing your commits makes for a more readable git commit history. It’s an interactive process that is best explained by Matt Stauffer in this video.
+