Skip to content

Commit 0ad66a6

Browse files
authored
Merge pull request #645 from ben4ever/fix_capitalizations
Fix capitalizations for the word "Git"
2 parents de9bd11 + 66a2eaf commit 0ad66a6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

book/03-git-branching/sections/remote-branches.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ If you're on a tracking branch and type `git pull`, Git automatically knows whic
137137
When you clone a repository, it generally automatically creates a `master` branch that tracks `origin/master`.
138138
However, you can set up other tracking branches if you wish – ones that track branches on other remotes, or don't track the `master` branch.
139139
The simple case is the example you just saw, running `git checkout -b [branch] [remotename]/[branch]`.
140-
This is a common enough operation that git provides the `--track` shorthand:
140+
This is a common enough operation that Git provides the `--track` shorthand:
141141

142142
[source,console]
143143
----

book/04-git-server/sections/gitlab.asc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a bit more complex than the GitWeb option and likely requires more maint
88

99
==== Installation
1010

11-
GitLab is a database-backed web application, so its installation is a bit more involved than some other git servers.
11+
GitLab is a database-backed web application, so its installation is a bit more involved than some other Git servers.
1212
Fortunately, this process is very well-documented and supported.
1313

1414
There are a few methods you can pursue to install GitLab.
@@ -68,7 +68,7 @@ The types of permissions are too numerous to list here, but GitLab has a helpful
6868

6969
===== Projects
7070

71-
A GitLab project roughly corresponds to a single git repository.
71+
A GitLab project roughly corresponds to a single Git repository.
7272
Every project belongs to a single namespace, either a user or a group.
7373
If the project belongs to a user, the owner of the project has direct control over who has access to the project; if the project belongs to a group, the group's user-level permissions will also take effect.
7474

@@ -81,7 +81,7 @@ Note that this controls both git ``fetch'' access as well as access to the web U
8181

8282
GitLab includes support for hooks, both at a project or system level.
8383
For either of these, the GitLab server will perform an HTTP POST with some descriptive JSON whenever relevant events occur.
84-
This is a great way to connect your git repositories and GitLab instance to the rest of your development automation, such as CI servers, chat rooms, or deployment tools.
84+
This is a great way to connect your Git repositories and GitLab instance to the rest of your development automation, such as CI servers, chat rooms, or deployment tools.
8585

8686
==== Basic Usage
8787

@@ -113,7 +113,7 @@ Each project's home page shows recent activity, and links along the top will lea
113113

114114
==== Working Together
115115

116-
The simplest way of working together on a GitLab project is by giving another user direct push access to the git repository.
116+
The simplest way of working together on a GitLab project is by giving another user direct push access to the Git repository.
117117
You can add a user to a project by going to the ``Members'' section of that project's settings, and associating the new user with an access level (the different access levels are discussed a bit in <<_gitlab_groups_section>>).
118118
By giving a user an access level of ``Developer'' or above, that user can push commits and branches directly to the repository with impunity.
119119

book/A-git-in-other-environments/sections/bash.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Copy it somewhere handy, like your home directory, and add this to your `.bashrc
1212
. ~/git-completion.bash
1313
-----
1414

15-
Once that's done, change your directory to a git repository, and type:
15+
Once that's done, change your directory to a Git repository, and type:
1616

1717
[source,console]
1818
----

0 commit comments

Comments
 (0)