Created
February 15, 2019 13:46
-
-
Save srafay/b47d50f9a003e919cde1d13fbb86013d to your computer and use it in GitHub Desktop.
Disable annoying bitbucket or source tree password prompts on windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git config --global --replace-all credential.interactive false | |
$ git config --global --replace-all credential.modalPrompt false | |
$ git config --edit --system | |
# remove line | |
helper = manager | |
# To disable openssh password prompt, add these 2 lines | |
[core] | |
askpass = |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@artshade you are welcome, glad it was of help to you :)