'how to delete user.name and user.email that empty in git
Solution 1:[1]
That config is set in your current repository, not globally. As such, you should not use --global when unsetting. Additionally, since you have them set multiple times, you'll have to use --unset-all:
git config --unset-all user.name
git config --unset-all user.email
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Leonardo Dagnino |

