Skip to content

Commit 7b4bcd1

Browse files
authored
Merge pull request #115 from nirajpandkar/master
Capitalized the first letter of certain words
2 parents 5136dbc + 3c17588 commit 7b4bcd1

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
6363
* [Update all the submodules](#update-all-the-submodules)
6464
* [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)
6565
* [Rename a branch](#rename-a-branch)
66-
* [rebases 'feature' to 'master' and merges it in to master ](#rebases-feature-to-master-and-merges-it-in-to-master)
66+
* [Rebases 'feature' to 'master' and merges it in to master ](#rebases-feature-to-master-and-merges-it-in-to-master)
6767
* [Archive the `master` branch](#archive-the-master-branch)
6868
* [Modify previous commit without modifying the commit message](#modify-previous-commit-without-modifying-the-commit-message)
6969
* [Prunes references to remote branches that have been deleted in the remote.](#prunes-references-to-remote-branches-that-have-been-deleted-in-the-remote)
@@ -94,13 +94,13 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
9494
* [Check if the change was a part of a release.](#check-if-the-change-was-a-part-of-a-release)
9595
* [Dry run. (any command that supports dry-run flag should do.)](#dry-run-any-command-that-supports-dry-run-flag-should-do)
9696
* [Marks your commit as a fix of a previous commit.](#marks-your-commit-as-a-fix-of-a-previous-commit)
97-
* [squash fixup commits normal commits.](#squash-fixup-commits-normal-commits)
98-
* [skip staging area during commit.](#skip-staging-area-during-commit)
97+
* [Squash fixup commits normal commits.](#squash-fixup-commits-normal-commits)
98+
* [Skip staging area during commit.](#skip-staging-area-during-commit)
9999
* [Interactive staging.](#interactive-staging)
100100
* [List ignored files.](#list-ignored-files)
101101
* [Status of ignored files.](#status-of-ignored-files)
102102
* [Commits in Branch1 that are not in Branch2](#commits-in-branch1-that-are-not-in-branch2)
103-
* [reuse recorded resolution, record and reuse previous conflicts resolutions.](#reuse-recorded-resolution-record-and-reuse-previous-conflicts-resolutions)
103+
* [Reuse recorded resolution, record and reuse previous conflicts resolutions.](#reuse-recorded-resolution-record-and-reuse-previous-conflicts-resolutions)
104104
* [Open all conflicted files in an editor.](#open-all-conflicted-files-in-an-editor)
105105
* [Count unpacked number of objects and their disk consumption.](#count-unpacked-number-of-objects-and-their-disk-consumption)
106106
* [Prune all unreachable objects from the object database.](#prune-all-unreachable-objects-from-the-object-database)
@@ -119,7 +119,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
119119
* [Create and switch new branch](#create-and-switch-new-branch)
120120
* [Ignore file mode changes on commits](#ignore-file-mode-changes-on-commits)
121121
* [Turn off git colored terminal output](#turn-off-git-colored-terminal-output)
122-
* [specific color settings](#specific-color-settings)
122+
* [Specific color settings](#specific-color-settings)
123123
* [Show all local branches ordered by recent commits](#show-all-local-branches-ordered-by-recent-commits)
124124
* [Find lines matching the pattern (regex or string) in tracked files](#find-lines-matching-the-pattern-regex-or-string-in-tracked-files)
125125
* [Clone a shallow copy of a repository](#clone-a-shallow-copy-of-a-repository)
@@ -355,7 +355,7 @@ git branch --contains <commit-ish>
355355

356356
## Git Aliases
357357
```sh
358-
git config --global alias.<handle> <command>
358+
git config --global alias.<handle> <command>
359359
git config --global alias.st status
360360
```
361361

@@ -519,7 +519,7 @@ __Alternatives:__
519519
git branch -m [<old-branch-name>] <new-branch-name>
520520
```
521521

522-
## rebases 'feature' to 'master' and merges it in to master
522+
## Rebases 'feature' to 'master' and merges it in to master
523523
```sh
524524
git checkout feature && git rebase @{-1} && git checkout @{-2} && git merge @{-1}
525525
```
@@ -708,12 +708,12 @@ git clean -fd --dry-run
708708
git commit --fixup <SHA-1>
709709
```
710710

711-
## squash fixup commits normal commits.
711+
## Squash fixup commits normal commits.
712712
```sh
713713
git rebase -i --autosquash
714714
```
715715

716-
## skip staging area during commit.
716+
## Skip staging area during commit.
717717
```sh
718718
git commit --only <file_path>
719719
```
@@ -738,7 +738,7 @@ git status --ignored
738738
git log Branch1 ^Branch2
739739
```
740740

741-
## reuse recorded resolution, record and reuse previous conflicts resolutions.
741+
## Reuse recorded resolution, record and reuse previous conflicts resolutions.
742742
```sh
743743
git config --global rerere.enabled 1
744744
```
@@ -800,12 +800,12 @@ git checkout master && git branch --no-merged
800800

801801
## Find guilty with binary search
802802
```sh
803-
git bisect start # Search start
804-
git bisect bad # Set point to bad commit
805-
git bisect good v2.6.13-rc2 # Set point to good commit|tag
806-
git bisect bad # Say current state is bad
807-
git bisect good # Say current state is good
808-
git bisect reset # Finish search
803+
git bisect start # Search start
804+
git bisect bad # Set point to bad commit
805+
git bisect good v2.6.13-rc2 # Set point to good commit|tag
806+
git bisect bad # Say current state is bad
807+
git bisect good # Say current state is good
808+
git bisect reset # Finish search
809809

810810
```
811811

@@ -845,7 +845,7 @@ git config core.fileMode false
845845
git config --global color.ui false
846846
```
847847

848-
## specific color settings
848+
## Specific color settings
849849
```sh
850850
git config --global <specific command e.g branch, diff> <true, false or always>
851851
```

tips.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
"tip": "git branch -m <new-branch-name>",
184184
"alternatives": ["git branch -m [<old-branch-name>] <new-branch-name>"]
185185
}, {
186-
"title": "rebases 'feature' to 'master' and merges it in to master ",
186+
"title": "Rebases 'feature' to 'master' and merges it in to master ",
187187
"tip": "git checkout feature && git rebase @{-1} && git checkout @{-2} && git merge @{-1}"
188188
}, {
189189
"title": "Archive the `master` branch",
@@ -281,10 +281,10 @@
281281
"title": "Marks your commit as a fix of a previous commit.",
282282
"tip": "git commit --fixup <SHA-1>"
283283
}, {
284-
"title": "squash fixup commits normal commits.",
284+
"title": "Squash fixup commits normal commits.",
285285
"tip": "git rebase -i --autosquash"
286286
}, {
287-
"title": "skip staging area during commit.",
287+
"title": "Skip staging area during commit.",
288288
"tip": "git commit --only <file_path>"
289289
}, {
290290
"title": "Interactive staging.",
@@ -299,7 +299,7 @@
299299
"title": "Commits in Branch1 that are not in Branch2",
300300
"tip": "git log Branch1 ^Branch2"
301301
}, {
302-
"title": "reuse recorded resolution, record and reuse previous conflicts resolutions.",
302+
"title": "Reuse recorded resolution, record and reuse previous conflicts resolutions.",
303303
"tip": "git config --global rerere.enabled 1"
304304
}, {
305305
"title": "Open all conflicted files in an editor.",
@@ -357,7 +357,7 @@
357357
"title": "Turn off git colored terminal output",
358358
"tip": "git config --global color.ui false"
359359
},{
360-
"title": "specific color settings",
360+
"title": "Specific color settings",
361361
"tip": "git config --global <specific command e.g branch, diff> <true, false or always>"
362362
},{
363363
"title": "Show all local branches ordered by recent commits",

0 commit comments

Comments
 (0)