Created
January 28, 2014 18:52
Command to remove a git configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove repository configuration | |
git config --unset [key] | |
# Remove global configuration | |
git config --global --unset [key] | |
# Remove system configuration | |
git config --system --unset [key] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Franks-Joseph, to see the keys, run
git config --global --list
or--local
- for local settings respectively. It will be entries such ascore.autocrlf
,merge.tool=bc
and other, depending on what you set.