Skip to content

Commit 447dcbe

Browse files
Fix typo
1 parent e0b6ebc commit 447dcbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/07-git-tools/sections/rewriting-history.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $ git commit --amend --no-edit
5656
==== Changing Multiple Commit Messages
5757

5858
To modify a commit that is farther back in your history, you must move to more complex tools.
59-
Git doesn't have a modify-history tool, but you can use the rebase tool to rebase a series of commits onto the HEAD they were originally based on instead of moving them to another one.
59+
Git doesn't have a modify-history tool, but you can use the rebase tool to rebase a series of commits onto the HEAD that were originally based on instead of moving them to another one.
6060
With the interactive rebase tool, you can then stop after each commit you want to modify and change the message, add files, or do whatever you wish.
6161
You can run rebase interactively by adding the `-i` option to `git rebase`.
6262
You must indicate how far back you want to rewrite commits by telling the command which commit to rebase onto.

0 commit comments

Comments
 (0)