Skip to content

Commit 65ac61a

Browse files
committed
Replace all escape codes for "em" dash with " -- "
1 parent e0b7b07 commit 65ac61a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and type:
3636
$ git init
3737
----
3838

39-
This creates a new subdirectory named `.git` that contains all of your necessary repository files a Git repository skeleton.
39+
This creates a new subdirectory named `.git` that contains all of your necessary repository files -- a Git repository skeleton.
4040
At this point, nothing in your project is tracked yet.
4141
(See <<_git_internals>> for more information about exactly what files are contained in the `.git` directory you just created.)(((git commands, init)))
4242

@@ -56,11 +56,11 @@ At this point, you have a Git repository with tracked files and an initial commi
5656
[[_git_cloning]]
5757
==== Cloning an Existing Repository
5858

59-
If you want to get a copy of an existing Git repository for example, a project you'd like to contribute to the command you need is `git clone`.
59+
If you want to get a copy of an existing Git repository -- for example, a project you'd like to contribute to -- the command you need is `git clone`.
6060
If you're familiar with other VCS systems such as Subversion, you'll notice that the command is "clone" and not "checkout".
61-
This is an important distinction instead of getting just a working copy, Git receives a full copy of nearly all data that the server has.
61+
This is an important distinction -- instead of getting just a working copy, Git receives a full copy of nearly all data that the server has.
6262
Every version of every file for the history of the project is pulled down by default when you run `git clone`.
63-
In fact, if your server disk gets corrupted, you can often use nearly any of the clones on any client to set the server back to the state it was in when it was cloned (you may lose some server-side hooks and such, but all the versioned data would be there see <<_git_on_the_server>> for more details).
63+
In fact, if your server disk gets corrupted, you can often use nearly any of the clones on any client to set the server back to the state it was in when it was cloned (you may lose some server-side hooks and such, but all the versioned data would be there -- see <<_git_on_the_server>> for more details).
6464

6565
You clone a repository with `git clone <url>`.(((git commands, clone)))
6666
For example, if you want to clone the Git linkable library called `libgit2`, you can do so like this:

0 commit comments

Comments
 (0)