zl程序教程

您现在的位置是:首页 >  其他

当前栏目

git上传大文件

2023-04-18 13:00:28 时间

第一步

安装lfs

git lfs install

第二步

查找大文件

find ./ -size +100M

./表示当前目录下

第三步

追踪大文件

git lfs track "大文件的名称"

第四步

正常上传git

git add .
git commit -m 'commit'
git push origin main