I've been trying to push changes where I've added realm.framework (static framework) to my xcode project, but each time it gets stuck when pushing to git.
I've identified that its realm.framework that itself is getting stuck; no other file or attempt to push to git gets stuck when writing objects.
Counting objects: 40, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (39/39), done.
Writing objects: 100% (40/40), 73.81 MiB | 4.00 KiB/s, done.
Total 40 (delta 12), reused 0 (delta 0)
I've tried the post buffer
$ git config http.postBuffer 524288000
How can I push realm.framework to my git project without it getting stuck?
Many thanks
Edit
I've found out that its specifically the
Realm
file, which 227.3MB in size.
I've tried to use SSH and HTTPS, both with the postbuffer.
Sadly, they are both stuck.
I guess the only solution I have right now is to gitignore the file and put in an NSAssert to inform the user to manually install/add Realm.framework
Thanks