Git shell hints for password in OpenSSH popup

I don’t know why git recently asks me for credentials in an old-fashioned OpenSSH window (by the way, I use https connection) instead of a request to the console.

This prevents me from using wincred, I always need to enter my credentials. Pretty annoying, especially when I make a typo, the console cursor disappears. How to return to default mode?

System: Windows 7

Console: ConEmu

github openSSH window

Thanks for the help!

+7
git github shell git-shell
source share
2 answers

Use $ git config --global core.askPass ""

You can also set credentials in your config so you don't have to request them every time ( https://git-scm.com/docs/gitcredentials ).

+6
source share

It can also be called Visual Studio Code . If so, just add "git.autofetch": false to your setting.json file.

+5
source share

All Articles