gpt4 book ai didi

git - 在 Git Bash for Windows 中, "standard input mode"对 `git commit -F -` 有什么用?

转载 作者:太空狗 更新时间:2023-10-29 13:33:21 25 4
gpt4 key购买 nike

我知道以下命令从标准输入中获取文本并将其用作提交日志的消息:

echo "hello world" | git commit -F -

但是,如果你只是将它作为 git commit -F - 那么它会把你带到我称之为“标准输入模式”的地方 Git Bash 显示消息 (reading log message from标准输入) 并等待某种输入...我猜。我的问题是这种模式到底是什么,它真的可以使用吗?我已经输入文本并使用 ctrl-zctrl-c 退出,但没有运气让提交之后成功运行。它只会让我回到提示。

问题:“标准输入模式”到底是怎么回事,是否可以用来成功输入commit log message?

编辑:我试过 ctrl-d,但没有任何改变。我正在使用 Windows 10。

最佳答案

When you use - in commands it tells the application to read from STDIN. Git notices that STDIN is empty (unless you echo and pipe first) so it starts listening for input. Once you type your message you have to tell it that you're finished by sending the EOF message.

When you run echo hello | git commit -F - you're piping text into git so it uses the piped message.

~ blockloop

为了在 Windows 上的 Git Bash 控制台中使用 git commit -F -,您必须将命令附加到 winpty,如下所示:

winpty git commit -F -

之后,您将按预期进入“标准输入模式”。与使用 Linux 和 Mac 时使用 CTRL + D 不同,CTRL + Z 和然后在新行上ENTER。这将指示 EOF 并保存提交日志消息。

如果您在消息所在的同一行按 CTRL + Z,则 ^Z 将作为文本输入到消息旁边没有其他事情会发生。您需要按 CTRL + Z,然后在单独的空行上按 ENTER

因此,要编辑 blockloop 的示例:

winpty git commit -F -
my message blah blah<enter>
<CTRL-Z><enter>

来源:Github

关于git - 在 Git Bash for Windows 中, "standard input mode"对 `git commit -F -` 有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39261961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com