auto correct typos

This commit is contained in:
Hemanth.HM 2016-01-31 21:00:33 +05:30
parent f4b8b94f59
commit f8d2278bd0
2 changed files with 9 additions and 0 deletions

View File

@ -78,6 +78,7 @@
* [Always rebase instead of merge on pull.](https://github.com/git-tips/tips#always-rebase-instead-of-merge-on-pull)
* [List all the alias and configs.](https://github.com/git-tips/tips#list-all-the-alias-and-configs)
* [Make git case sensitive.](https://github.com/git-tips/tips#make-git-case-sensitive)
* [Auto correct typos.](https://github.com/git-tips/tips#auto-correct-typos)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -539,5 +540,10 @@ git config --list
git config --global core.ignorecase false
```
## Auto correct typos.
```sh
git config --global help.autocorrect 1
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -237,4 +237,7 @@
}, {
"title": "Make git case sensitive.",
"tip": "git config --global core.ignorecase false"
}, {
"title": "Auto correct typos.",
"tip": "git config --global help.autocorrect 1"
}]