Skip to content

Commit a816744

Browse files
committed
Update grammar and code examples
1 parent a133383 commit a816744

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ Adding `?w=1` to any diff URL will remove any changes only in whitespace, enabli
3939

4040
## Cloning a Repo
4141

42-
When cloning a repo the `.git` can be left off the edge.
42+
When cloning a repo the `.git` can be left off the end.
4343

4444
```bash
4545
$ git clone https://github.com/tiimgreen/github-cheat-sheet
4646
```
4747

4848
## Hub - Git Wrapper
4949

50-
[Hub](https://github.com/github/hub) is a command line tool that wraps git in order to extend it with extra features and commands that make working with GitHub easier.
50+
[Hub](https://github.com/github/hub) is a command line git wrapper that gives extra features and commands that make working with GitHub easier.
5151

5252
This allows you to do things like:
5353

5454
```bash
5555
$ hub clone tiimgreen/toc
5656
```
5757

58-
Which translates to:
58+
instead of:
5959

6060
```bash
61-
$ git clone git://github.com/tiimgreen/toc.git
61+
$ git clone https://github.com/tiimgreen/toc.git
6262
```
6363

6464
## Previous Branch
@@ -77,6 +77,9 @@ $ git checkout -
7777

7878
$ git checkout -
7979
# Switched to branch 'next'
80+
81+
$ git checkout -
82+
# Switched to branch 'master'
8083
```
8184

8285
## git.io

0 commit comments

Comments
 (0)