Skip to content

Commit 320634b

Browse files
committed
Fix inconsistent punctuation and typos
1 parent 1c23d34 commit 320634b

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
3535
* [Create local tag](#create-local-tag)
3636
* [Delete local tag](#delete-local-tag)
3737
* [Delete remote tag](#delete-remote-tag)
38-
* [Undo local changes with the last content in head](#undo-local-changes-with-the-last-content-in-head)
38+
* [Undo local changes with the content in index(staging)](#undo-local-changes-with-the-content-in-indexstaging)
3939
* [Revert: Undo a commit by creating a new commit](#revert-undo-a-commit-by-creating-a-new-commit)
4040
* [Reset: Discard commits, advised for private branch](#reset-discard-commits-advised-for-private-branch)
4141
* [Reword the previous commit message](#reword-the-previous-commit-message)
4242
* [See commit history for just the current branch](#see-commit-history-for-just-the-current-branch)
43-
* [Amend author.](#amend-author)
44-
* [Reset author, after author has been changed in the global config.](#reset-author-after-author-has-been-changed-in-the-global-config)
43+
* [Amend author](#amend-author)
44+
* [Reset author, after author has been changed in the global config](#reset-author-after-author-has-been-changed-in-the-global-config)
4545
* [Changing a remote's URL](#changing-a-remotes-url)
4646
* [Get list of all remote references](#get-list-of-all-remote-references)
4747
* [Get list of all local and remote branches](#get-list-of-all-local-and-remote-branches)
@@ -76,11 +76,11 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
7676
* [Update all the submodules](#update-all-the-submodules)
7777
* [Show all commits in the current branch yet to be merged to master](#show-all-commits-in-the-current-branch-yet-to-be-merged-to-master)
7878
* [Rename a branch](#rename-a-branch)
79-
* [Rebases 'feature' to 'master' and merges it in to master ](#rebases-feature-to-master-and-merges-it-in-to-master)
79+
* [Rebases 'feature' to 'master' and merges it in to master](#rebases-feature-to-master-and-merges-it-in-to-master)
8080
* [Archive the `master` branch](#archive-the-master-branch)
8181
* [Modify previous commit without modifying the commit message](#modify-previous-commit-without-modifying-the-commit-message)
82-
* [Prunes references to remove branches that have been deleted in the remote.](#prunes-references-to-remove-branches-that-have-been-deleted-in-the-remote)
83-
* [Delete local branches that has been squash and merged in the remote.](#delete-local-branches-that-has-been-squash-and-merged-in-the-remote)
82+
* [Prunes references to remove branches that have been deleted in the remote](#prunes-references-to-remove-branches-that-have-been-deleted-in-the-remote)
83+
* [Delete local branches that has been squash and merged in the remote](#delete-local-branches-that-has-been-squash-and-merged-in-the-remote)
8484
* [Retrieve the commit hash of the initial revision.](#retrieve-the-commit-hash-of-the-initial-revision)
8585
* [Visualize the version tree.](#visualize-the-version-tree)
8686
* [Visualize the tree including commits that are only referenced from reflogs](#visualize-the-tree-including-commits-that-are-only-referenced-from-reflogs)
@@ -141,7 +141,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
141141
* [Clone a shallow copy of a repository](#clone-a-shallow-copy-of-a-repository)
142142
* [Search Commit log across all branches for given text](#search-commit-log-across-all-branches-for-given-text)
143143
* [Get first commit in a branch (from master)](#get-first-commit-in-a-branch-from-master)
144-
* [Unstaging Staged file](#unstaging-staged-file)
144+
* [Unstage Staged file](#unstage-staged-file)
145145
* [Force push to Remote Repository](#force-push-to-remote-repository)
146146
* [Adding Remote name](#adding-remote-name)
147147
* [List all currently configured remotes](#list-all-currently-configured-remotes)
@@ -175,7 +175,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
175175
* [Push the current branch to the same name on the remote repository](#push-the-current-branch-to-the-same-name-on-the-remote-repository)
176176
* [Push a new local branch to remote repository and track](#push-a-new-local-branch-to-remote-repository-and-track)
177177
* [Change a branch base](#change-a-branch-base)
178-
* [Use SSH instead of HTTPs for remotes](#use-ssh-instead-of-https-for-remotes)
178+
* [Use SSH instead of HTTPS for remotes](#use-ssh-instead-of-https-for-remotes)
179179
* [Update a submodule to the latest commit](#update-a-submodule-to-the-latest-commit)
180180
* [Prevent auto replacing LF with CRLF](#prevent-auto-replacing-lf-with-crlf)
181181

@@ -359,12 +359,12 @@ git commit -v --amend
359359
git cherry -v master
360360
```
361361

362-
## Amend author.
362+
## Amend author
363363
```sh
364364
git commit --amend --author='Author Name <[email protected]>'
365365
```
366366

367-
## Reset author, after author has been changed in the global config.
367+
## Reset author, after author has been changed in the global config
368368
```sh
369369
git commit --amend --reset-author --no-edit
370370
```
@@ -650,7 +650,7 @@ __Alternatives:__
650650
git branch -m [<old-branch-name>] <new-branch-name>
651651
```
652652

653-
## Rebases 'feature' to 'master' and merges it in to master
653+
## Rebases 'feature' to 'master' and merges it in to master
654654
```sh
655655
git rebase master feature && git checkout master && git merge -
656656
```
@@ -665,7 +665,7 @@ git archive master --format=zip --output=master.zip
665665
git add --all && git commit --amend --no-edit
666666
```
667667

668-
## Prunes references to remove branches that have been deleted in the remote.
668+
## Prunes references to remove branches that have been deleted in the remote
669669
```sh
670670
git fetch -p
671671
```
@@ -676,7 +676,7 @@ __Alternatives:__
676676
git remote prune origin
677677
```
678678

679-
## Delete local branches that has been squash and merged in the remote.
679+
## Delete local branches that has been squash and merged in the remote
680680
```sh
681681
git branch -vv | grep ': gone]' | awk '{print <!-- @doxie.inject start -->}' | xargs git branch -D
682682
```
@@ -1049,7 +1049,7 @@ __Alternatives:__
10491049
git log --reverse master..<branch-name> | head -6
10501050
```
10511051

1052-
## Unstaging Staged file
1052+
## Unstage Staged file
10531053
```sh
10541054
git reset HEAD <file-name>
10551055
```
@@ -1245,7 +1245,7 @@ git push -u origin <branch_name>
12451245
git rebase --onto <new_base> <old_base>
12461246
```
12471247
1248-
## Use SSH instead of HTTPs for remotes
1248+
## Use SSH instead of HTTPS for remotes
12491249
```sh
12501250
git config --global url.'[email protected]:'.insteadOf 'https://github.com/'
12511251
```

tips.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@
9090
"title": "See commit history for just the current branch",
9191
"tip": "git cherry -v master"
9292
}, {
93-
"title": "Amend author.",
93+
"title": "Amend author",
9494
"tip": "git commit --amend --author='Author Name <[email protected]>'"
9595
}, {
96-
"title": "Reset author, after author has been changed in the global config.",
96+
"title": "Reset author, after author has been changed in the global config",
9797
"tip": "git commit --amend --reset-author --no-edit"
9898
}, {
9999
"title": "Changing a remote's URL",
@@ -213,7 +213,7 @@
213213
"tip": "git branch -m <new-branch-name>",
214214
"alternatives": ["git branch -m [<old-branch-name>] <new-branch-name>"]
215215
}, {
216-
"title": "Rebases 'feature' to 'master' and merges it in to master ",
216+
"title": "Rebases 'feature' to 'master' and merges it in to master",
217217
"tip": "git rebase master feature && git checkout master && git merge -"
218218
}, {
219219
"title": "Archive the `master` branch",
@@ -222,11 +222,11 @@
222222
"title": "Modify previous commit without modifying the commit message",
223223
"tip": "git add --all && git commit --amend --no-edit"
224224
}, {
225-
"title": "Prunes references to remove branches that have been deleted in the remote.",
225+
"title": "Prunes references to remove branches that have been deleted in the remote",
226226
"tip": "git fetch -p",
227227
"alternatives": ["git remote prune origin"]
228228
}, {
229-
"title": "Delete local branches that has been squash and merged in the remote.",
229+
"title": "Delete local branches that has been squash and merged in the remote",
230230
"tip": "git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D"
231231
}, {
232232
"title": "Retrieve the commit hash of the initial revision.",
@@ -417,7 +417,7 @@
417417
"tip": "git log --oneline master..<branch-name> | tail -1",
418418
"alternatives": ["git log --reverse master..<branch-name> | head -6"]
419419
}, {
420-
"title": "Unstaging Staged file",
420+
"title": "Unstage Staged file",
421421
"tip": "git reset HEAD <file-name>"
422422
}, {
423423
"title": "Force push to Remote Repository",
@@ -523,7 +523,7 @@
523523
"title": "Change a branch base",
524524
"tip": "git rebase --onto <new_base> <old_base>"
525525
}, {
526-
"title": "Use SSH instead of HTTPs for remotes",
526+
"title": "Use SSH instead of HTTPS for remotes",
527527
"tip": "git config --global url.'[email protected]:'.insteadOf 'https://github.com/'"
528528
}, {
529529
"title": "Update a submodule to the latest commit",

0 commit comments

Comments
 (0)