Skip to content

Commit 356549d

Browse files
committed
Grammar tweaks for reading flow
1 parent 06f7887 commit 356549d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

intermediate/beta.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: GitHub Intermediate
44
description: Leveraging Git and GitHub from the command line
55
---
66

7-
This curriculum will be your companion to the GitHub Intermediate class taught by the GitHub Training Team and other educational groups. In this course, you'll learn how to extensively leverage Git and GitHub from the command line.
7+
This curriculum will be your companion to the GitHub Intermediate class taught by the GitHub Training Team and other educational groups. In this course you'll learn how to extensively leverage Git and GitHub from the command line.
88

99
![Git repository creation at the command line](../assets/screenshots/terminal-repo-creation.jpg)
1010

@@ -123,7 +123,7 @@ $ git config --[scope] color.ui auto
123123
{% endcapture %}
124124
{% include slide-section %}
125125

126-
Git provides an easy way to get started versioning any prototype, prose or project with a terse command line recipe.
126+
Git provides an easy way to start versioning any prototype, prose or project with a terse command line recipe.
127127

128128
Initialize a repository and create a top level project directory:
129129

@@ -247,7 +247,7 @@ Some simple option flag additions to the `log` command can make the output more
247247
$ git log --oneline
248248
```
249249

250-
And if displaying the full contents of the change and word-level comparision are helpful, there are option switches for that too.
250+
And if displaying the full contents of the change and word-level comparison are helpful, there are option switches for that too.
251251

252252
```shell
253253
# Option switches common with `diff`
@@ -512,7 +512,7 @@ $ git log --stat -M
512512

513513

514514
#### Revert
515-
Revert is the kindest of undo functionality. It creates a new _inverse_ commit and links back to the old one in the proposed commit message:
515+
Revert is the kindest undo functionality. It creates a new _inverse_ commit and links back to the old one in the proposed commit message:
516516

517517
```shell
518518
# Create a new commit undoing the patch in that specified
@@ -535,7 +535,7 @@ $ git reset --soft [commit|branch|tag]
535535
# Move HEAD, keep changes, clear staging area
536536
$ git reset --mixed [commit|branch|tag]
537537

538-
## Move HEAD, discard all uncommited changes
538+
## Move HEAD, discard all uncommitted changes
539539
$ git reset --hard [commit|branch|tag]
540540
```
541541

0 commit comments

Comments
 (0)