Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to undo git config --system core.askpass git-gui--askpass

Tags:

git

github

Ran that command when trying to fix a problem I was having with git push. It prompts me every time I git push and I have no idea how to disable it.

like image 523
joewang704 Avatar asked Sep 12 '25 22:09

joewang704


1 Answers

Try running:

git config --system --unset-all core.askpass

to remove that configuration. You can then run git config --system --list to view the full list of system configurations to ensure it's gone.

like image 77
1337joe Avatar answered Sep 15 '25 14:09

1337joe