Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is default git core.askpass configuration value?

Tags:

git

I've set my core.askpass to an application and now I want to revert it back. How do I do it?

like image 504
Mohsen Avatar asked Dec 03 '12 21:12

Mohsen


People also ask

What is git config -- list?

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.

What is git config user name?

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.

What is git configuration?

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.


2 Answers

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.

like image 69
hd1 Avatar answered Oct 10 '22 02:10

hd1


Remove it:

git config --global --unset core.askpass
like image 28
poke Avatar answered Oct 10 '22 02:10

poke