I had an issue trying to remove a git alias I made. You can remove it by deleting that line from the configuration file, but I wanted to know how to do it using the git config command.
git config --global --unset alias.myAlias
I had an issue trying to remove a git alias I made. You can remove it by deleting that line from the configuration file, but I wanted to know how to do it using the git config command.
git config --global --unset alias.myAlias
Useful for a Git newbie, thank you!