[git]文件过大无法上传-lfs

1 · AK47 · June 28, 2023, midnight
推git遇到了一个错误: remote: fatal: pack exceeds maximum allowed size。 估计以后也会再次遇到,记录一下解决步骤。 解决方案 第一反应当然是google一下,顺利找到解决方案 First, you can use git-sizer to get an idea of what is taking too much space in your current local repository (that you fail to push) if it is because of a commit too big, you can: git reset @~ to cancel that commit remake several smaller commits try and push again if it is because of a file too big, you can try and activate Git LFS, but that is limited by quota and going abov...