git 2.32 git push -u origin master Nothing happens

When you say “nothing is happening”, do you mean I waited for less than 2 minutes and it appeared as though nothing happened? In that case it might be the credential manager. See issue git-credential-manager-core hangs on get #364. To see more logging it might be useful to run the command $ GIT_TRACE=1 GIT_TRANSFER_TRACE=1 GIT_CURL_VERBOSE=1 GIT_TRACE_PERFORMANCE=1 GCM_TRACE=1 git push -u origin master. Your problem might be fixed by setting the credential provider. For a github server you can do this $ GCM_PROVIDER=github git push -u origin master. If that worked you can set this permanently with $ git config --global credential.github.com.provider github. You should probably also look in the Configuration options configuration.

If all the above sounds too complicated you can downgrade git for windows to 2.30. The installer can be found here:
https://github.com/git-for-windows/git/releases/download/v2.30.2.windows.1/Git-2.30.2-64-bit.exe

Leave a Comment