Git Extensions not saving remote authentication
After installing Git Extensions on my new laptop I quickly found myself having to enter my password every time git talked to the remote hosted on BitBucket.
If you have the same problem of Git Bash or Git Extensions asking you for your password every time you can try this, which worked for me:
Open the .gitconfig in your home directory in a text editor like SublimeText or Notepad++
in the [credential] section make sure there aren't extra \ characters escaping the double quotes.
[credential] helper = !\\\"C:/Program Files (x86)/GitExtensions/GitCredentialWinStore/git-credential-winstore.exe\\\"
[credential] helper = !\"C:/Program Files (x86)/GitExtensions/GitCredentialWinStore/git-credential-winstore.exe\"