From f786fd27da47ab6abee5dc2609020d5a41804139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eahin=20Akkaya?= Date: Wed, 26 Jan 2022 18:04:11 +0300 Subject: [PATCH] TIL: Removing a git config option --- git/removing-a-git-config-option | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 git/removing-a-git-config-option diff --git a/git/removing-a-git-config-option b/git/removing-a-git-config-option new file mode 100644 index 0000000..a4c7bf3 --- /dev/null +++ b/git/removing-a-git-config-option @@ -0,0 +1,4 @@ +You can use `--unset` flag to unset your config variable. +git config --local --unset user.name +git config --global --unset user.name +