I'm trying to commit my repo with following steps
git init
Initialized empty Git repository in D:/projectfolder/project/.git/
git add .
git commit -m "test"
git remote add origin https://github.com/me/project.git
git remote -v
origin https://github.com/me/project.git (fetch)
origin https://github.com/me/project.git (push)
git push -u origin main //yes main, not master
git branch -M main
git push -u origin main
And it just get stuck.
Typing GIT_TRACE=1 GIT_TRANSFER_TRACE=1 GIT_CURL_VERBOSE=1 GIT_TRACE_PERFORMANCE=1 GCM_TRACE=1 git push -u origin main
I see the following
It seems to me that the problem is on lines 83 - 86.
So how do I add credentials for my account on git?