I\'ve spent all day on this one and could really use some help. When I try to push a relatively large commit,
Writing objects: 100% (21/21), 908.07 KiB | 0
I experienced the issue due to a misconfiguration, where I pointed to a remote prefixed with http:// instead of https:// the answer hinted on SSL and this helped me to a solution for my issue.
So my remote configuration should be written:
$ git remote add origin https://github.com/jonasbn/perl-workflow.git
over:
$ git remote add origin http://github.com/jonasbn/perl-workflow.git
Take care,
jonasbn