3

我有一个跟踪 git 存储库的 Mercurial 存储库。它在 Windows 10 上运行良好。现在我将它作为目录移动到 Mac,然后运行hg reset -Ca只是为了清理它。现在我试图运行hg pull它会导致这样的错误:

% hg --traceback --verbose pull                                                                                                255 ↵
pulling from git+https://someserver/somerepo.git
Traceback (most recent call last):
  File "/Users/user/.pyenv/versions/2.7.14/lib/python2.7/site-packages/mercurial/scmutil.py", line 154, in callcatch
  File "/Users/user/.pyenv/versions/2.7.14/lib/python2.7/site-packages/mercurial/dispatch.py", line 314, in _runcatchfunc
.....
  File "/Users/user/.pyenv/versions/2.7.14/lib/python2.7/site-packages/dulwich/pack.py", line 1004, in __init__
  File "/Users/user/.pyenv/versions/2.7.14/lib/python2.7/site-packages/dulwich/file.py", line 90, in GitFile
IOError: [Errno 24] Too many open files: '/Users/user/Projects/somerepo/.hg/git/objects/pack/pack-c03bf69ae597535d876f0dd30ddd6458f2c3f1ff.pack'
abort: Too many open files: /Users/user/Projects/somerepo/.hg/git/objects/pack/pack-c03bf69ae597535d876f0dd30ddd6458f2c3f1ff.pack

我查了一下,看起来我有最新版本的hg-gitdulwich

dulwich (0.18.6)
hg-git (0.8.10)

Mercurial 也是最新的

% hg --version 
Mercurial Distributed SCM (version 4.5)

我检查了 Windows 上的 Mercurial 版本,4.4.2如果这很重要。我想知道是否有人遇到过这样的问题,并且可能有解决方法或修复方法。

4

1 回答 1

7

ulimit -n在你的 Mac 上说什么?这是打开文件数量的限制。然后尝试运行ulimit -n N比以前更大的 N,然后再次运行 hg 命令。

如果您不止一次遇到此问题,您可能希望ulimit -n N在每次登录时都运行该命令。~/.bashrc

于 2018-02-09T16:02:52.460 回答