执行 git archive 命令时出现 Python Fabric 错误

发布于 2024-10-18 04:02:11 字数 443 浏览 2 评论 0原文

我在 Windows 7 计算机上运行 Fabric,当我键入:

fab production setup

我收到以下错误:

[localhost] run: git archive --format=tar master > 20110221142115.tar

Warning: local() encountered an error (return code 1) while executing 'git archi
ve --format=tar master > 20110221142115.tar'

fabric 文件在我的 Windows XP 计算机上运行良好,但我似乎无法克服此错误。我还尝试从提示符下运行“git archive”命令,它工作正常,没有问题。知道 Fabric 为什么会呕吐吗?

I'm running Fabric on a windows 7 machine, when I type:

fab production setup

I get the following error:

[localhost] run: git archive --format=tar master > 20110221142115.tar

Warning: local() encountered an error (return code 1) while executing 'git archi
ve --format=tar master > 20110221142115.tar'

the fabric file works fine on my Windows XP machine, but I can't seem to get past this error. I also tried running the "git archive" command from the prompt, it works fine no issues. Any idea why Fabric is puking?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怂人 2024-10-25 04:02:11

如果相同的脚本/命令在 Windows XP 上运行,那么您是否检查过 Windows 7 防火墙或任何某种保护是否不允许您的连接通过?尝试以下操作是否适用于交互式提示:

from fabric.api import local
local('git archive')

If the same script/command works on Windows XP, then did you check if Windows 7 firewall or any sort-of-protection is not allowing your connection to go through? Try if the following works on interactive prompt:

from fabric.api import local
local('git archive')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文