I've set my core.askpass
to an application and now I want to revert it back. How do I do it?
The git config list command will show all Git config properties throughout all of the variously scoped Git files. If the value displayed is different from the value expected, then an override is happening in one of the other Git config scopes.
About Git usernamesYou can change the name that is associated with your Git commits using the git config command. The new name you set will be visible in any future commits you push to GitHub from the command line. If you'd like to keep your real name private, you can use any text as your Git username.
The git config command is a convenience function that is used to set Git configuration values on a global or local project level. These configuration levels correspond to . gitconfig text files. Executing git config will modify a configuration text file.
I think the default is GIT_ASKPASS, followed by SSH_ASKPASS, followed by a simple password prompt. It's suggested you set it via the GIT_ASKPASS environment variable, though.
Remove it:
git config --global --unset core.askpass
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With