赞
踩
背景:
版本库中有两个压缩包,大概在300M左右,上传时提示超过100M,上传失败。
1.安装 git-lfs
git lfs install
2.跟踪指定大文件。
可以使用 *.bin 之类的命令来跟踪一类文件
git lfs track 'rootfs.tar.bz2'
git lfs track 'rootfs_nogpu.tar.bz2'
3.查看跟踪文件列表
git lfs track
4.查看整个仓库状态。
git status
5.添加未跟踪文件。
.gitattributes 是两个大文件相关的配置信息,不能删除。
git add .gitattributes rootfs.tar.bz2 rootfs_nogpu.tar.bz2
6.查看最新状态,确认是否已经添加成功。
git status
7.将暂存区内容添加到本地仓库,并备注信息。
git commit -am "xxxxxx"
8.推送本地仓库到github.
git push
参考文章:
https://github.com/git-lfs/git-lfs/wiki/Tutorial
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。