Skip to content

Commit 7b5efaa

Browse files
hillaryfraleyfabaff
authored andcommitted
Fixed typos (home-assistant#1122)
1 parent a592f97 commit 7b5efaa

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

source/developers/development_catching_up.markdown

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,26 @@ sharing: true
99
footer: true
1010
---
1111

12-
If you're taking a while developing your feature 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.
12+
If it's taking a while to develop your feature, and you want to catch up with what's in the current Home Assistant `dev` branch, you can use `git rebase`. This will pull the latest Home Assistant changes locally, rewind your commits, bring in the latest changes from Home Assistant, and replay all of your commits on top.
1313

1414
```bash
1515
# Run this from your feature branch
1616
$ git fetch upstream dev # to pull the latest changes into a local dev branch
1717
$ git rebase upstream/dev # to put those changes into your feature branch before your changes
1818
```
1919

20-
If rebase detects conflicts, you can repeat the following process until all changes have been resolved:
20+
If rebase detects conflicts, repeat this process until all changes have been resolved:
2121

22-
1. `git status` will show you the file with the conflict.
23-
2. Edit the file and resolving the lines between `<<<< | >>>>`
24-
3. Add the modified file `git add <file>` or `git add .`
25-
4. Continue rebase `git rebase --continue`
26-
5. Repeat until you've resolved all conflicts.
22+
1. `git status` shows you the file with the conflict; edit the file and resolve the lines between `<<<< | >>>>`
23+
3. Add the modified file: `git add <file>` or `git add .`
24+
4. Continue rebase: `git rebase --continue`
25+
5. Repeat until you've resolved all conflicts
2726

28-
There is other workflows that is covered in detail in the [Github documentation](https://help.github.com/articles/fork-a-repo/). Add an additional `remote` after you clone your fork.
27+
Other workflows are covered in detail in the [Github documentation](https://help.github.com/articles/fork-a-repo/). Add an additional `remote` after you clone your fork.
2928

3029
```bash
3130
$ git remote add upstream https://github.com/home-assistant/home-assistant.git
3231
```
3332

34-
and then simply `git pull --rebase upstream dev`.
33+
Then, `git pull --rebase upstream dev`.
3534

0 commit comments

Comments
 (0)