Question:
Why does git-bash hang when cloning a non-public repo when installed with defaults?
Context:
I ran into this issue when trying to clone a private GitHub repo on my co-workers Windows 10 machine.
Steps to reproduce:
- Installed the newest version of git bash for Windows (for at the time of writing this post for me was 2.32.0.windows.1). Choosing all of the defaults.
- Run
git clone [http-link-to-private-repo]

Expected:
- A popup to enter username and password information.
My Hack Solution:
- When installing 2.32.0. for windows check the "Enable experimental support for pseudo consoles.".

This allows the bash console to present you an option to authenticate via a web browser or a personal access token.

Unrelated Note:
I originally was looking to post this on the Github Issues page for Git but they don't have one so here I am. Not sure if this is the appropriate place to post this but I wanted it somewhere so another person doesn't run into the same trouble.