I'm troubleshooting what seems to be a credentials issue with git communicating with the remote (very similar to this, but none of the answers fix my issue).
After setting git to proxy through fiddler I see that each execution of git pull results in 3 https requests after the connect.
- request 1 has no auth header
- request 2 has an auth header with no password
- request 3 has an auth header and the password is applied correctly
Is this normal? If so, why?