I\'m trying to git push -u origin master And it just hangs at
Writing objects: 99% (219/220), 12.65 MiB | 97 KiB/s
The
I had the same problem with (writing objects %16) stuck then fatal. I solved this by saving the current changes and clone a new repository, then copy the modified files into it.
Eg. Assume current repository is A, then all you need to do is:
mv A Bgit clone Amv B/* A/rm -rf BThen commit and push and it all worked fine. It recognized the moved files as modified :)