E-mail : support@tech2now.in

How to upload big file in github

Git Git Hub git commit gir rebase git status git init

Uploading large files to GitHub can be a challenge due to file size limitations. GitHub has a maximum file size limit of 100 MB for most repositories. If you need to upload files larger than this limit, you can consider using Git Large File Storage (Git LFS), which is a Git extension specifically designed for handling large files.

Install Git LFS: Download and install Git LFS from the official website (https://git-lfs.github.com/) based on your operating system.

git lfs install

git lfs track “*.zip”

git add large-file.zip

git commit -m “Add large file”

git push origin