mirror of
https://github.com/namibia/tips.git
synced 2024-12-23 10:38:58 +00:00
commit
79c74517f6
@ -84,6 +84,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
|
|||||||
* [Always rebase instead of merge on pull.](#always-rebase-instead-of-merge-on-pull)
|
* [Always rebase instead of merge on pull.](#always-rebase-instead-of-merge-on-pull)
|
||||||
* [List all the alias and configs.](#list-all-the-alias-and-configs)
|
* [List all the alias and configs.](#list-all-the-alias-and-configs)
|
||||||
* [Make git case sensitive.](#make-git-case-sensitive)
|
* [Make git case sensitive.](#make-git-case-sensitive)
|
||||||
|
* [Add custom editors.](#add-custom-editors)
|
||||||
* [Auto correct typos.](#auto-correct-typos)
|
* [Auto correct typos.](#auto-correct-typos)
|
||||||
* [Check if the change was a part of a release.](#check-if-the-change-was-a-part-of-a-release)
|
* [Check if the change was a part of a release.](#check-if-the-change-was-a-part-of-a-release)
|
||||||
* [Dry run. (any command that supports dry-run flag should do.)](#dry-run-any-command-that-supports-dry-run-flag-should-do)
|
* [Dry run. (any command that supports dry-run flag should do.)](#dry-run-any-command-that-supports-dry-run-flag-should-do)
|
||||||
@ -624,6 +625,11 @@ git config --list
|
|||||||
git config --global core.ignorecase false
|
git config --global core.ignorecase false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Add custom editors.
|
||||||
|
```sh
|
||||||
|
git config --global core.editor '$EDITOR'
|
||||||
|
```
|
||||||
|
|
||||||
## Auto correct typos.
|
## Auto correct typos.
|
||||||
```sh
|
```sh
|
||||||
git config --global help.autocorrect 1
|
git config --global help.autocorrect 1
|
||||||
|
@ -254,6 +254,9 @@
|
|||||||
}, {
|
}, {
|
||||||
"title": "Make git case sensitive.",
|
"title": "Make git case sensitive.",
|
||||||
"tip": "git config --global core.ignorecase false"
|
"tip": "git config --global core.ignorecase false"
|
||||||
|
},{
|
||||||
|
"title": "Add custom editors.",
|
||||||
|
"tip": "git config --global core.editor '$EDITOR'"
|
||||||
}, {
|
}, {
|
||||||
"title": "Auto correct typos.",
|
"title": "Auto correct typos.",
|
||||||
"tip": "git config --global help.autocorrect 1"
|
"tip": "git config --global help.autocorrect 1"
|
||||||
|
Loading…
Reference in New Issue
Block a user