Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upload file > 25 MB on Github

Tags:

git

github

I have a file that I want to add to Github. Its size is more than 25 MB limit of github. It is a csv file. How can I upload it on Github.

Steps followed till now

$ cd path_of_directory
$ git lfs install
$ git lfs track "*.csv"
$ git add Filename.csv
$ git commit -m "Filename.csv"

Till here everything is fine. I get below success message:

$ git commit -m 'FileName.csv'
[master (root-commit) 3f089ff] FileName.csv
 1 file changed, 3 insertions(+)
 create mode 100644 Downloads/Folder_of_file/FileName.csv


$ git push origin master

This gives error

fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
like image 280
noob Avatar asked Apr 05 '20 10:04

noob


Video Answer


1 Answers

Files that you add to a repository via a browser are limited to 25 MB per file. You can add larger files, up to 100 MB each, via the command line.

Refer this page.

If you need to upload greater file than 100 mb then Git LFS might be suitable for you.

like image 190
Mohamed Shabeer kp Avatar answered Sep 22 '22 18:09

Mohamed Shabeer kp