Skip to content

Commit f6f5edd

Browse files
committed
"Git Basics" chapter: tweak a couple things for aesthetics/clarity
- use proper "em" dash - adjust wording to explain clone target directory name Signed-off-by: Robert P. J. Day <[email protected]>
1 parent d2f67ce commit f6f5edd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/02-git-basics/sections/getting-a-repository.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $ git clone https://github.com/libgit2/libgit2
7373
That creates a directory named `libgit2`, initializes a `.git` directory inside it, pulls down all the data for that repository, and checks out a working copy of the latest version.
7474
If you go into the new `libgit2` directory that was just created, you'll see the project files in there, ready to be worked on or used.
7575

76-
If you want to clone the repository into a directory named something other than `libgit2`, you can specify that as the next command-line option:
76+
If you want to clone the repository into a directory named something other than `libgit2`, you can specify the new directory name as an additional argument:
7777

7878
[source,console]
7979
----

ch02-git-basics-chapter.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ include::book/02-git-basics/sections/aliases.asc[]
2222

2323
=== Summary
2424

25-
At this point, you can do all the basic local Git operations creating or cloning a repository, making changes, staging and committing those changes, and viewing the history of all the changes the repository has been through.
25+
At this point, you can do all the basic local Git operations -- creating or cloning a repository, making changes, staging and committing those changes, and viewing the history of all the changes the repository has been through.
2626
Next, we'll cover Git's killer feature: its branching model.

0 commit comments

Comments
 (0)