当前位置:   article > 正文

github上传unity项目大文件(实践结果内容不要超1.5g,或者可以花钱买流量包)_unity scene过大传不了github

unity scene过大传不了github

使用工具

Git Large File Storage(下载网址:Git Large File Storage | Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. (git-lfs.com)Git Large File Storage | Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. (git-lfs.com)

安装时需要注意安装目录要与git有关联(默认电脑安装了git)

安装目录

E:\Program Files\Git\bin\Git LFS

这里需要找到git目录下的bin文件,安装到这里。

确认是否安装成功
git lfs install
开始上传文件
  1. git init #创建本地仓库环境
  2. git lfs install #安装大文件上传应用
  3. git lfs track * #追踪要上传的大文件,*表示路径下所有文件
  4. git add .gitattributes #添加先上传的属性文件(要先上传属性文件,自己会生成,不要担心没有)
  5. git commit -m "first"#添加属性文件上传说明
  6. git remote add origin https://github.com/Lxy811/USV01.git #建立本地和GitHub仓库的链接
  7. git push origin master #上传属性文件
  8. git add * #添加要上传的大文件,*表示路径下的所有文件
  9. git commit -m "Git LFS01"
  10. git push origin master #上传大文件

开始报错

batch response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access. 

就是要买流量包了,(花钱的三思后做,于是最终我压缩上传网盘了)

买流量包

选择账户-》setting-》如下图

(然后往下拉找到,add more data就可以消费了)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/715280
推荐阅读
相关标签
  

闽ICP备14008679号