Skip to content

Commit 78c016a

Browse files
authored
Merge pull request #1596 from bagasme/ch02-typo
Fix reported typo issue in Chapter 2
2 parents 2d3db49 + 39c44e3 commit 78c016a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/02-git-basics/sections/recording-changes.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you run this command directly after a clone, you should see something like th
2727
$ git status
2828
On branch master
2929
Your branch is up-to-date with 'origin/master'.
30-
nothing to commit, working directory clean
30+
nothing to commit, working tree clean
3131
----
3232

3333
This means you have a clean working directory; in other words, none of your tracked files are modified.

book/02-git-basics/sections/remotes.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ $ git remote show origin
179179
----
180180

181181
It lists the URL for the remote repository as well as the tracking branch information.
182-
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge in the `master` branch on the remote after it fetches all the remote references.
182+
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge the remote's `master` branch into the local one after it has been fetched.
183183
It also lists all the remote references it has pulled down.
184184

185185
That is a simple example you're likely to encounter.

0 commit comments

Comments
 (0)