使用Invoke-Expression powershell时,git拉/git克隆返回空白值

发布于 2025-01-17 11:48:32 字数 484 浏览 2 评论 0原文

我正在尝试使用Invoke-expression运行A git pull git clone 命令。如果运行以下命令时有任何故障,我想捕获变量上的详细信息,以便我可以相应地输出代码。但是不幸的是,当使用以下命令时,它将返回一个无输出的空白变量。

Invoke-Expression -Command "git pull https://$($UserName):$($Password)@$Gitpath --rebase" -OutVariable Gitresult 2>&1

Invoke-Expression -Command "git clone https://$($UserName):$($Password)@$Gitpath" -OutVariable Gitresult 2>&1

请建议,如何获得输出,无论成功或失败事件如何。

如果有其他选择,请分享。

I am trying to run a Git pull and Git Clone command using Invoke-Expression mentioned below. In case there are any failures when running the below command, I wanted to capture the details on a variable so I can output the code accordingly. but unfortunately when using the below commands, it returns a blank variable with no output.

Invoke-Expression -Command "git pull https://$($UserName):$($Password)@$Gitpath --rebase" -OutVariable Gitresult 2>&1

Invoke-Expression -Command "git clone https://$($UserName):$($Password)@$Gitpath" -OutVariable Gitresult 2>&1

Kindly suggest, how I can get the output irrespective of success or failure events.

If there are any alternatives, please share.

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

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

发布评论

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

评论(1

呆橘 2025-01-24 11:48:32

git是一种怪异的CLI,因为它使用了STDERR很多。您不需要Invoke-expression在这里:

$url = "https://${UserName}:${Password}@${Gitpath}"

$gitPullResult = git pull $url --rebase 2>&1
$gitCloneResult = git clone $url 2>&1

git is kind of a weird cli as it makes use of stderr quite a bit. You don't need Invoke-Expression at all here:

$url = "https://${UserName}:${Password}@${Gitpath}"

$gitPullResult = git pull $url --rebase 2>&1
$gitCloneResult = git clone $url 2>&1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文