The problem
I accidentally added my datasets to my commit. When I pushed the commit it gave me the standard file size error (dataset files are over 100MB). I reverted the previous commit using git revert, and only added my ipython notebook and some image files.
Now when I push my commit it still tires to push the dataset files as well
Using git diff --stat origin/master I found the files to be pushed :
agconti@agconti-Inspiron-5520:~/my_dev/github/US_Dolltar_Vehicle_Currencny$ git diff --stat origin/master
.ipynb_checkpoints/US_Dollar_Vehicle_Currency-checkpoint.ipynb | 1972 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ CountryNumbers_indexConti.xlsx | Bin 0 -> 22762 bytes Italian Trade/US_Dollar_Vehicle_Currency.ipynb | 1972 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Italian Trade/images/3_year_exchange_rate_volitlity.png | Bin 0 -> 11808 bytes Italian Trade/images/Currency_usage_breakdown_top20.png | Bin 0 -> 404666 bytes Italian Trade/images/Currency_usage_observations_top20.png | Bin 0 -> 274964 bytes Italian Trade/images/Currency_usage_trade_value_top20.png | Bin 0 -> 211274 bytes Italian Trade/images/Exchange_rate_volitlity_top20.png | Bin 0 -> 345899 bytes Italian Trade/images/prop_xm_top20.png | Bin 0 -> 258254 bytes Italian Trade/images/rate_derive_activity_top20.png | Bin 0 -> 214196 bytes README.md | 2 +- US_Dollar_Vehicle_Currency.ipynb | 809 -------------------------------- images/3_year_exchange_rate_volitlity.png | Bin 11808 -> 0 bytes images/Currency_usage_breakdown_top20.png | Bin 404666 -> 0 bytes images/Currency_usage_observations_top20.png | Bin 292532 -> 0 bytes images/Currency_usage_trade_value_top20.png | Bin 224008 -> 0 bytes images/Exchange_rate_volitlity_top20.png | Bin 361868 -> 0 bytes images/exporter_economic_strength_top20.png | Bin 0 -> 166575 bytes images/exporter_trade_health_top20.png | Bin 0 -> 277557 bytes images/prop_xm_top20.png | Bin 275777 -> 0 bytes images/rate_derive_activity_top20.png | Bin 228728 -> 0 bytes libpeerconnection.log | 0 22 files changed, 3945 insertions(+), 810 deletions(-) None are the dataset files. Even so they are still being pushed.
How can I get git to stop pushing the dataset files?
Heres a look at the error message:
Delta compression using up to 8 threads. Compressing objects: 100% (27/27), done. Writing objects: 100% (30/30), 279.15 MiB | 389 KiB/s, done. Total 30 (delta 7), reused 3 (delta 0) remote: Error code: c4fe7114933ad585dc5027c82caabdaa remote: warning: Error GH413: Large files detected. remote: warning: See http://git.io/iEPt8g for more information. remote: error: File ForConti_AllItalianImportsVCP.raw is 987.19 MB; this exceeds GitHub's file size limit of 100 MB remote: error: File italian_imports.csv is 1453.55 MB; this exceeds GitHub's file size limit of 100 MB remote: error: File italian_imports_random_10percent.csv is 138.30 MB; this exceeds GitHub's file size limit of 100 MB To https://github.com/agconti/US_Dollar_Vehicle_Currency ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://github.com/agconti/US_Dollar_Vehicle_Currency'
.gitignore? I'm trying to understand -- is it as if the reverted commit is still getting pushed along with the desired commit?sudo git rm -r --cached datafile.file, they are still being pushed. I need to unscramble this now so that i can push and do things like `.gitignore in the future.