-1

I want to push into a new repository, but when I enter git push origin master command, it doesn't respond, and I can't enter any other command.

When I close it, it pops up a mintty box showing "Processes are running in session".
And I am unable to push my project onto GitHub.

Given below is the image of popup:

popup

How can I get past this error?

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
Manya Garg
  • 13
  • 3
  • Are you sure that the server of the origin url is working, and the git web request is in timed out ? – Elikill58 Jul 16 '21 at 06:34
  • side note : a common way to stop a running process in a terminal is to type `[Ctrl] + [C]`. This sends a signal to that process, instead of killing (and closing) the complete terminal. – LeGEC Jul 16 '21 at 07:32

1 Answers1

2

Check first:

  • your remote URL (git remote -v)
  • your Git version (git version)

If it is an HTTPS one, and you are using Git for Windows 2.32(1), there was an issue with the credential manager which could freeze a push.
It is fixed in 2.32(2), so make sure to upgrade and see if the issue persists.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250