On "git push origin master" the following errors occure:
remote: Resolving deltas: 100% (84/84), completed with 30 local objects.
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
remote: error: Trace: e6e85fd0a75d9cd592b377a5078084a6
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File releases/release.1.3.5.tar.bz2 is 180.47 MB; this exceeds GitHub's file size limit of 100.00 MB
I understand the error, that the file was too large. So i deleted it and tried to pushed again. The same error happens then.
On the internet i've found a possible solution with "git rm --cached filename". But doing this, fails also:
$ git rm --cached releases/release.1.3.5.tar.bz2
fatal: pathspec 'releases/release.1.3.5.tar.bz2' did not match any files
Is there any solution for this?