Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/02-git-basics/sections/getting-a-repository.asc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $ git clone https://github.com/libgit2/libgit2
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.
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.

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:
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:

[source,console]
----
Expand Down
2 changes: 1 addition & 1 deletion ch02-git-basics-chapter.asc
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ include::book/02-git-basics/sections/aliases.asc[]

=== Summary

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.
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.
Next, we'll cover Git's killer feature: its branching model.