gitee提交大文件夹
# 安装 Git LFS(如果未安装)
git lfs install# 跟踪整个大文件夹(或特定大文件类型)
git lfs track "big_folder/**" # 替换为你的文件夹名# 提交并推送
git add .gitattributes big_folder/
git commit -m "add big_folder via LFS"
git push origin main
出现batch response: batch error: auth batch error: LFS only supported repository in paid or trial enterprise.错误的话
rm .git/hooks/pre-push
再重新push