Skip to content

Commit ce69527

Browse files
authored
Merge pull request #887 from aollier/git_server
updated all the references to "_git_on_the_server"
2 parents 2ae8205 + bd7ac48 commit ce69527

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If you want to get a copy of an existing Git repository -- for example, a projec
6060
If you're familiar with other VCS systems such as Subversion, you'll notice that the command is "clone" and not "checkout".
6161
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 <<_getting_git_on_a_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:
@@ -84,4 +84,4 @@ That command does the same thing as the previous one, but the target directory i
8484

8585
Git has a number of different transfer protocols you can use.
8686
The previous example uses the `https://` protocol, but you may also see `git://` or `user@server:path/to/repo.git`, which uses the SSH transfer protocol.
87-
<<_git_on_the_server>> will introduce all of the available options the server can set up to access your Git repository and the pros and cons of each.
87+
<<_getting_git_on_a_server>> will introduce all of the available options the server can set up to access your Git repository and the pros and cons of each.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ origin [email protected]:mojombo/grit.git (push)
6767
This means we can pull contributions from any of these users pretty easily.
6868
We may additionally have permission to push to one or more of these, though we can't tell that here.
6969

70-
Notice that these remotes use a variety of protocols; we'll cover more about this in <<_git_on_the_server>>.
70+
Notice that these remotes use a variety of protocols; we'll cover more about this in <<_getting_git_on_a_server>>.
7171

7272
==== Adding Remote Repositories
7373

book/C-git-commands/1-git-commands.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The `git clone` command is used in dozens of places throughout the book, but we'
6767

6868
It's basically introduced and explained in <<_git_cloning>>, where we go through a few examples.
6969

70-
In <<_git_on_the_server>> we look at using the `--bare` option to create a copy of a Git repository with no working directory.
70+
In <<_getting_git_on_a_server>> we look at using the `--bare` option to create a copy of a Git repository with no working directory.
7171

7272
In <<_bundling>> we use it to unbundle a bundled Git repository.
7373

0 commit comments

Comments
 (0)