Skip to content

Commit aefb07e

Browse files
committed
Sync commit messages
1 parent 2fbc35b commit aefb07e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

book/03-git-branching/sections/nutshell.asc

+5-5
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Well, let's do another commit:
110110
[source,console]
111111
----
112112
$ vim test.rb
113-
$ git commit -a -m 'made a change'
113+
$ git commit -a -m 'Make a change'
114114
----
115115

116116
.The HEAD branch moves forward when a commit is made
@@ -157,7 +157,7 @@ Let's make a few changes and commit again:
157157
[source,console]
158158
----
159159
$ vim test.rb
160-
$ git commit -a -m 'made other changes'
160+
$ git commit -a -m 'Make other changes'
161161
----
162162

163163
Now your project history has diverged (see <<divergent_history>>).
@@ -175,12 +175,12 @@ If you run `git log --oneline --decorate --graph --all` it will print out the hi
175175
[source,console]
176176
----
177177
$ git log --oneline --decorate --graph --all
178-
* c2b9e (HEAD, master) Made other changes
179-
| * 87ab2 (testing) Made a change
178+
* c2b9e (HEAD, master) Make other changes
179+
| * 87ab2 (testing) Make a change
180180
|/
181181
* f30ab Add feature #32 - ability to add new formats to the central interface
182182
* 34ac2 Fix bug #1328 - stack overflow under certain conditions
183-
* 98ca9 initial commit of my project
183+
* 98ca9 Initial commit of my project
184184
----
185185

186186
Because a branch in Git is actually a simple file that contains the 40 character SHA-1 checksum of the commit it points to, branches are cheap to create and destroy.

0 commit comments

Comments
 (0)