How do I disable Git Credential Manager for Windows?

后端 未结 15 1750
被撕碎了的回忆
被撕碎了的回忆 2020-11-27 09:29

I notice that in the latest version of Git, the default is now to popup a \"Git Credential Manager for Windows\" dialog instead of prompting me for me password at the Bash p

相关标签:
15条回答
  • 2020-11-27 09:53

    pretty old topic but this is maybe a help for someone searching for the problem where the above tips does not solved it.

    I use

    git credential-manager remove -force
    
    0 讨论(0)
  • 2020-11-27 09:55

    I was able to uninstall the Git Credential Manager for Windows using the uninstall option:

    git-credential-manager.exe uninstall
    

    Run this command in C:\Program Files\Git\mingw64\libexec\git-core

    0 讨论(0)
  • 2020-11-27 09:58

    If you notice the credential manager UI popping up when you use a JetBrains IDE (such as IntelliJ IDEA, PhpStorm, WebStorm, PyCharm, Rider, RubyMine, Android Studio, or Goland), do this:

    1. In your IDE, go to File | Settings | Version Control | Git.

    2. Disable Use credential helper:

    3. Don't forget to press Save.

    0 讨论(0)
提交回复
热议问题