Home > Enterprise >  I can't commit a file to GitHub, and there is no error messenge [duplicate]
I can't commit a file to GitHub, and there is no error messenge [duplicate]

Time:10-04

I already have the repo in GitHub set up, but when I try to push a file from my local machine to the remote repo it just doesn't work, I don't even get a error message, my terminal just stops responding.

[the window get wen trying to push a text fileto my GitHub repo]

CodePudding user response:

Try to run git status to determine what's going on.

Did you commit the files you are trying to push?

You can check out Github's tutorial at the following link.

  • Related