当 GitHub LFS 配额超出时,我可以删除存储库并创建一个同名的新存储库来解决问题吗?
正如标题所述,我这样做了,但问题仍然存在于日志中:
批处理响应:此存储库超出了其数据配额。负责LFS带宽的账户应该购买更多的数据包来恢复访问。
那么有没有一种方法可行呢?我不需要保留存储库的历史记录或其中的任何内容,因为它仅用于存储和存储数据。发布在线构建的二进制文件。购买更多数据包和带宽对我来说也不是一个选择。
As the title describes, I did so but the problem remains with the log:
batch response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access.
So is there a way that works? I don't need to retain the history of the repository or any contents within it, since it is only used to store & publish on-line built binaries. Purchasing more data packs and bandwidth is not an option for me either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GitHub 的 Git LFS 配额是针对每个用户帐户的。它每月重置一次,然后您将获得另一千兆字节的免费下载。无论您有多少存储库,删除它们都没有帮助。
一般来说,Git 存储库,无论是否使用 Git LFS,都不适合存储二进制文件。如果您使用的是 GitHub 存储库,则可以使用从存储库构建的二进制文件的发布资产,这些文件是免费提供的。如果您只是尝试上传和分发二进制文件,则需要采用不同的方法,例如带有 Web 服务器或云存储桶的 VPS。
GitHub's Git LFS quota is per-user account. It resets once a month, and then you get another free gigabyte of download. It doesn't matter how many repositories you have, and deleting them doesn't help.
In general, Git repositories, whether using Git LFS or not, are not a good fit for storing binaries. If you're using a GitHub repository, you can use release assets for binaries built from your repository, which are available without charge. If you're just trying to upload and distribute binaries, a different approach would be warranted, such as a VPS with a web server or a cloud bucket.