Skip to content

Disable Git Command Openssh Popup

If you don't want to input git username and password through the openssh popup, you can disable it by the following configuration.

Bash
# global configuration
git config --global core.askPass ""
# just this clone
git -c core.askPass="" clone <https_url>

With this configuration, the git will read username and password through the console.