Skip to content

Commit 9de5d21

Browse files
committed
Resolve review comments
1 parent 3f9a089 commit 9de5d21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/cleaning-up-commits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ It can be difficult to follow the changes in a pull request when the number of c
1717

1818
### Rebasing
1919

20-
Sometimes a pull request can be based on a much earlier commit in the branch that you are trying to merge into it, causing a large amount of commits and file changes to litter the pull request. In this case, it would be better to **rebase** (move branches around by changing the commit that they are based on). After rebasing, you will want to close the pull request and open a new one, which will now have less commits.
20+
Sometimes a pull request can be based on a much earlier commit in the branch that you are trying to merge into it, causing a large amount of commits and file changes to litter the pull request. In this case, it would be better to **rebase** (move branches around by changing the commit that they are based on). After rebasing, you will want to close the pull request and open a new one, which will now have fewer commits.
2121

22-
For example, if you're working off of the branch **feature** and are trying to rebase with **master**, you may run one of the following commands:
22+
For example, if you're working from the branch **feature** and are trying to rebase with **master**, you may run one of the following commands:
2323
> `git rebase master`
2424
> `git rebase master feature`
2525

0 commit comments

Comments
 (0)