博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git如何上传大文件,突破大小限制
阅读量:6002 次
发布时间:2019-06-20

本文共 383 字,大约阅读时间需要 1 分钟。

Github中单个文件的大小限制是100MB,为了能突破这个限制,我们需要使用Git Large File Storage这个工具,

git lfs installgit lfs track "*.exe" /* .exe 可以替换成你要上传的后缀名 如.pdf格式的*/git add .gitattributesgit commit -m "Updated the attributes"git push origin mastergit add my_large_file.exe  /* 上传你打算要上传的大文件*/git lfs ls-filesgit commit -m "Add the large file"git push origin master

 

转载于:https://www.cnblogs.com/qjuly/p/9314598.html

你可能感兴趣的文章
开源 java CMS - FreeCMS2.6 信息管理
查看>>
LEADTOOLS使用教程集合
查看>>
git详解入门(1)
查看>>
在Linux上安装Memcached服务
查看>>
跳板机 -- 审计 -- 图
查看>>
connection 与 session
查看>>
ZGC:jdk11试验性质的低延迟垃圾回收器
查看>>
看透个人的老板一---性情篇
查看>>
跟我一起写 Makefile
查看>>
web.xml
查看>>
redis-cli 命令收集
查看>>
使用 Apache MINA 开发高性能网络应用程序
查看>>
MySQL数据库表设计最佳实践——《高性能MySQL》第三版第四章学习笔记
查看>>
Linux简单了解
查看>>
webservice ssl 1 SSL/TLS 协议入门
查看>>
Struts2的Stack Context和ValueStack
查看>>
php向html里传递数据,数据内容是url地址
查看>>
Cocoa 框架 For iOS(二)对象的分配初始化、内省、单例
查看>>
Objective-C语法之NSDictionary和NSMutableDictionary
查看>>
Linux配置防火墙详细步骤(iptables命令使用)
查看>>