Bitbucket, Windows and "fatal: could not read Password for"
I had the same problem an hour or so ago. My issue was that I was trying to do a git clone but using the https url instead of the ssh one. If you go to your repository you can select ssh or https from the dropdown for the clone url. Hope that helps!
Try to include your username and password in the URL like this:
git clone https://username:[email protected]/path_to/myRepo.git
I solved it setting a global parameter:
git config --global core.askpass /usr/libexec/git-core/git-gui--askpass