到Git LFS官网下载
传送门
初始化GitHub LFS和Git仓库
在仓库目录中运行:
git lfs install
再运行:
git init
跟踪大文件
git lfs track "*.zip"
添加并提交文件
git add .
git commit -m "Add large files"
上传到我的github
- 配置Git用户名和邮箱
git config --global user.name "Your Name"
git config --global user.email you@example.com
git config --global user.name "seamoon224"
git config --global user.email 1375144937@qq.com
- 在github上创建/指定一个远程仓库,用于存放传送的文件
- 添加远程仓库地址
git remote add origin <your-repository-URL>
- 推送到GitHub
git push -u origin master
推送失败后再次推送,成功运行了。(好怪)
其实最终还是失败了,因为git LFS空间不足,提示信息:
batch response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access.
只能在github上购买1 pack,进入settings,查看plans and usage,拉到最下面,可以看到git LFS data:
可以点击add pack进行购买,然后重新上传。成功!