Skip to content

Commit c4f9122

Browse files
committed
Update changed commit message in text
1 parent 4fa9c9a commit c4f9122

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Each time, Git will stop, let you amend the commit, and continue when you're fin
172172
==== Reordering Commits
173173

174174
You can also use interactive rebases to reorder or remove commits entirely.
175-
If you want to remove the ``added cat-file'' commit and change the order in which the other two commits are introduced, you can change the rebase script from this:
175+
If you want to remove the ``Add cat-file'' commit and change the order in which the other two commits are introduced, you can change the rebase script from this:
176176

177177
[source,console]
178178
----
@@ -190,7 +190,7 @@ pick f7f3f6d Change my name a bit
190190
----
191191

192192
When you save and exit the editor, Git rewinds your branch to the parent of these commits, applies `310154e` and then `f7f3f6d`, and then stops.
193-
You effectively change the order of those commits and remove the ``added cat-file'' commit completely.
193+
You effectively change the order of those commits and remove the ``Add cat-file'' commit completely.
194194

195195
[[_squashing]]
196196
==== Squashing Commits

0 commit comments

Comments
 (0)