git上传大文件到github

git上传大文件,是借助lfs,但是这个大文件也不是无限大的,lfs的上线:  单个文件2G一下

1. install  git-lfs :

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

2. 上传大文件需要加入.gitattributes:

git lfs track bigdata.tar
git add .gitattributes
git add  bigdata.tar
git commit -m "add"
git push origin master

猜你喜欢

转载自blog.csdn.net/weixin_39594447/article/details/87934715
今日推荐