git lfs 上傳文件有2G大小限制

怎麼上傳大於100MB的文件到github上,能夠用git lfs(實際上有配額限制,很坑)git

敏感數據能夠申請github私人倉庫,無償使用github

坑:git lfs 上傳文件大小有2G大小限制,
更大的坑,github上也有限制,關於配額說明
https://help.github.com/en/gi...centos

image.png

也就是隻能解決大於100MB和小於2G的文件上傳bash

若是須要在2個服務器之間傳輸,下載的服務器也須要安裝git lfs服務器

centos安裝curl

curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash

yum install git-lfs

在git目錄下url

git lfs install
git lfs track "\*.tar.gz"
git add .gitattributes
git commit -m "track \*.tar.gz files using Git LFS"
git add 1.tar.gz
git commit -m "add 1.tar.gz"
git push origin master

參考連接
https://github.com/git-lfs/gi...spa

相關文章
相關標籤/搜索