当前位置:   article > 正文

github上传超过100M的文件_github上传超过100mb的文件文件 csdn

github上传超过100mb的文件文件 csdn

 

  git上传大与100.00MB的文件到github上时报错:

  1. remote: error: GH001: Large files detected. You may want to try Git Large Filetorage - https://git-lfs.github.com.
  2. remote: error: Trace: ~~
  3. remote: error: See http://git.io/iEPt8g for more information.
  4. remote: error: File ~~ is 273.28 MB;his exceeds GitHub's file size limit of 100.00 MB
  5. To https://github.com/~~.git
  6. ! [remote rejected] master -> master (pre-receive hook declined)
  7. error: failed to push some refs to 'https://github.com/~~.git'

Alt
  错误原因:
  当单个文件超过100M的时候,push的时候会出现上面的Error。

  解决方式:

  1. # 1.安装Git命令行扩展。只需要设置一次Git LFS
  2. $ git lfs install
  3. # 2.选择您希望Git LFS管理的文件类型
  4. $ git lfs track "*.psd"
  5. # 确保跟踪.gitattributes
  6. $ git add .gitattributes
  7. # 3.Just commit and push to GitHub as you normally would.
  8. $ git add file.psd
  9. $ git commit -m "Add design file"
  10. $ git push origin master

  注意:如果是提交过程中报错,需要先撤销已提交的commit,再进行如上操作,如果是第一次commit就可以直接用。

  1. # 撤销步骤
  2. # 查看提交记录
  3. $ git log
  4. # 找到提交前的commit,重置
  5. $ git reset xxxxx

参考文章:【1】Git Large File Storage
     【2】Github超过100M的大文件上传
     【3】github push文件过大如何解决?

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号