签出标签时 Cygwin、Git、win32 错误
我正在尝试在 Windows XP 平台上通过 cygwin 使用 git 签出存储库的标签。我收到以下错误:
$ git checkout v0.4.2 0 [main] git 6028 C:\cygwin\bin\git.exe: * 致命错误 - 无法加载 C:\WINDOWS\system32\winmm.dll,Win32 错误 487
有有人经历过这个吗?我在网上看到了一些关于这个问题的讨论,但我还没有找到解决方案。
I'm trying to checkout a tag of a repository using git, via cygwin, on a Windows XP platform. I get the following error:
$ git checkout v0.4.2
0 [main] git 6028 C:\cygwin\bin\git.exe: * fatal error - could not load C:\WINDOWS\system32\winmm.dll, Win32 error 487
Has anyone experienced this? I see a little bit of chatter about it around the web, but I have not found a solution yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个cygwin问题。 Git 与 winmm.dll(windows 多媒体 dll)无关。
如果可以,请使用Windows 版 Git(以前的 msysgit)。如果这不适合您,那么您应该尝试将 cygwin 安装更新到最新版本。
This is a cygwin problem. Git has nothing to do with winmm.dll(windows multimedia dll).
If you can, use Git for Windows(former msysgit). If that doesn't suit you, then you should try updating your cygwin installation to the latest version.
将 Git 升级到新版本。我遇到了同样的问题,并将 Git 升级到版本 1.7.4 解决了它。
您可以选择仅升级 git 以避免破坏其他实用程序。
Upgrade Git to newer version. I faced the same problem and upgrading Git to version 1.7.4 resolved it.
You may choose to upgrade only git to avoid breaking other utilities.