Skip to content

Instantly share code, notes, and snippets.

@srafay
Created February 15, 2019 13:46
Show Gist options
  • Save srafay/b47d50f9a003e919cde1d13fbb86013d to your computer and use it in GitHub Desktop.
Save srafay/b47d50f9a003e919cde1d13fbb86013d to your computer and use it in GitHub Desktop.
Disable annoying bitbucket or source tree password prompts on windows
$ 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 =
@artshade
Copy link

artshade commented May 13, 2024

My dear... It worked! The default configuration indeed... Thank you very much!
The following prompt was appearing with VS Code and BitBucket repository opened:

2024-05-13_13-46-14_Z_0NrePm8v

@srafay
Copy link
Author

srafay commented May 16, 2024

My dear... It worked! The default configuration indeed... Thank you very much! The following prompt was appearing with VS Code and BitBucket repository opened:

2024-05-13_13-46-14_Z_0NrePm8v

@artshade you are welcome, glad it was of help to you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment