Bootstrap FreeKB - Git (Version Control) - Remove user defined git configurations
Git (Version Control) - Remove user defined git configurations

Updated:   |  Git (Version Control) articles

The git config command with the -l or --list option can be used to display the configurations that have been set.

~]# git config --list
user.name="John Doe"
user.email="john.doe@example.com"

 

The git config command with the --unset option can be used to remove configurations. The --global flag can be included to remove global configurations.

git config --global --unset user.email

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter af112a in the box below so that we can be sure you are a human.