Git Windows Disable password prompt UI but get password prompt from shell

后端 未结 5 736
深忆病人
深忆病人 2021-01-31 09:50

In git bash for windows, the username and/or password is asked in a separate UI popup prompt like below.

On Hitting Cancel you get the below shell based prompt

5条回答
  •  旧巷少年郎
    2021-01-31 10:11

    You may try the configuration below:

    git config --global --unset credential.helper
    

    and

    git config --system --unset credential.helper
    

    This helped me while I am using PortableGit 64-bit 2.12.1.1 on Windows 7.

提交回复
热议问题