Reputation: 682
I am trying to push ExpressPlay.framewrok which is of size 466.00 MB. But GitHub not allowing to push such large files its limit is 100 MB.
I have tried to use git lfs install command in my repository to support large files. But its not working.
does someone know solution for this ?
Thanks in advance
Upvotes: 2
Views: 4349
Reputation: 86
I had similar problem while uploading a 4 gb repository. I wrote this bat script to push files by type. This made push a lot faster.
git add **/*.$1
git commit -m "$1"
git push
set ext=%1
git add **/*.%ext%
git commit -m "%ext%"
git push
To upload all .js
files I'd use
>>> this.bat js
Upvotes: 3