Merge pull request #45 from dcortes92/master

Added tip to remove an entry from the global config.
This commit is contained in:
hemanth.hm 2016-04-07 09:48:23 +05:30
commit afa8747b07
2 changed files with 9 additions and 0 deletions

View File

@ -96,6 +96,7 @@
* [Prune all unreachable objects from the object database.](https://github.com/git-tips/tips#prune-all-unreachable-objects-from-the-object-database)
* [Instantly browse your working repository in gitweb.](https://github.com/git-tips/tips#instantly-browse-your-working-repository-in-gitweb)
* [View the GPG signatures in the commit log](https://github.com/git-tips/tips#view-the-gpg-signatures-in-the-commit-log)
* [Remove entry in the global config.](https://github.com/git-tips/tips#remove-entry-in-the-global-config)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -659,5 +660,10 @@ git instaweb [--local] [--httpd=<httpd>] [--port=<port>] [--browser=<browser>]
git log --show-signature
```
## Remove entry in the global config.
```sh
git config --global --unset <entry-name>
```
<!-- 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

@ -293,4 +293,7 @@
},{
"title": "View the GPG signatures in the commit log",
"tip": "git log --show-signature"
}, {
"title": "Remove entry in the global config.",
"tip": "git config --global --unset <entry-name>"
}]