Skip to content

Commit f7324c7

Browse files
authored
Merge pull request #1073 from rpjday/basics
"Git Basics" chapter: tweak a couple things for aesthetics/clarity
2 parents d2f67ce + f6f5edd commit f7324c7

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)