I have downloaded LFS and ran the appropriate commands to add *.mp4 files to the .gitattributes. Upon pushing, I get this error:
C:\servo>git push
Uploading LFS objects: 100% (1/1), 483 MB | 1.4 MB/s, done.
Enumerating objects: 10, done.
Counting objects: 100% (10/10), done.
Delta compression using up to 8 threads
Compressing objects: 100% (6/6), done.
Writing objects: 100% (9/9), 461.00 MiB | 1.27 MiB/s, done.
Total 9 (delta 2), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (2/2), completed with 1 local object.
remote: error: Trace: adb804884f553140d5388afb59d15f48fad63e9bd5410e814cfc79929a1fda90
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File Videos/initial_testing.mp4 is 461.00 MB; this exceeds GitHub's file size limit of 100.00 MB
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
To https://github.com/gabemorris12/Servo-Laser.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://github.com/gabemorris12/Servo-Laser.git'
The file is 483 MB. That shouldn't be too large. What else can I do to get this to push? The video has already been compressed to my liking.
Here were my series of commands:
git lfs track "*.mp4"
This automatically created a .gitattributes file with the text:
*.mp4 filter=lfs diff=lfs merge=lfs -text
Then I ran:
git add .
git commit -m "my message"
git push