【发布时间】:2014-06-05 07:54:03
【问题描述】:
有人在 Windows 7 上的 hg push 期间收到错误消息吗?
"abort: hg [my bitbucket repo] does not appear to be a largefile store"
我在尝试推送一些只有几 kB 的文件时收到此消息。我们的仓库没有大文件。
【问题讨论】:
标签: windows mercurial push abort
有人在 Windows 7 上的 hg push 期间收到错误消息吗?
"abort: hg [my bitbucket repo] does not appear to be a largefile store"
我在尝试推送一些只有几 kB 的文件时收到此消息。我们的仓库没有大文件。
【问题讨论】:
标签: windows mercurial push abort
Bitbucket 没有large file support
错误字符串“似乎不是大文件存储”来自 hg largefiles 扩展,因此您可能已启用它。
如果您的 repo 使用 largefile 扩展名,不一定包含大文件,那么您将无法将您的 repo 推送到 bitbucket。在 repo 的根目录中查找 .hglf 文件夹。如果它存在,那么您正在使用 largefiles 扩展名。
请参阅此question 以获取有关删除大文件的帮助。
【讨论】: