Answers for "github allow large files"

-2

github allow large files

# install git lfs
git lfs install

# track file types
git lfs track '*.nc'
git lfs track '*.csv'

# add and commit
git add .
git commit -m "<commit-message>"

# push 
git lfs push --all origin master
git push -u origin master
Posted by: Guest on August-31-2020

Code answers related to "github allow large files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language