Git freeze on click when compressing objects

hi I use Github to move some files from my local server to my Github repository. I accidentally included a 500 megabyte video file in the commit, and I think it totally messed up add/commit/push.

In particular, my team stops at the pushfollowing:

git push -u myGithubRepository master
Counting objects: 52, done.
Delta compression using up to 4 threads.
Compressing objects:  97% (36/37) 

It was many hours and still stuck.

I would like to commit all the other changes I made, so I don't want to go back to what was in my Github repository. I just want to resolve this conflict. I am new to Git, so please calm down.

thanks Tim

+3
source share
2 answers

@torek : " , ".

+3

, ? 500mb - .

  • (^C)
  • , .gitignore .
    • .gitignore , : git rm --cached <file>. . .. , . , .

:)

+6

All Articles