Git:如何在 Windows 上发出 rev-list --stdin 输入的结束信号
Git: How to signal end of rev-list --stdin input on Windows
我在 Windows 命令提示符下使用 git rev-list --stdin
。我输入 --
后跟一些路径,每行一个。
如何通知 Git 我已完成输入路径列表?我试过 Ctrl+Z, Ctrl+C, Ctrl+D 但 none 似乎按预期工作。
文档没有提到它:
https://git-scm.com/docs/git-rev-list
我发现这个相关问题对 Unix 有帮助,但似乎不适用于 Windows:
https://unix.stackexchange.com/questions/16333/how-to-signal-the-end-of-stdin-input
您可以从 Windows 中的键盘发出 EOF 信号,方法是按 Ctrl+Z
,然后按 Enter
键。
当我从键盘输入文件到程序时,我用过它,它对我有用。我认为它也适用于这里。
我在 Windows 命令提示符下使用 git rev-list --stdin
。我输入 --
后跟一些路径,每行一个。
如何通知 Git 我已完成输入路径列表?我试过 Ctrl+Z, Ctrl+C, Ctrl+D 但 none 似乎按预期工作。
文档没有提到它: https://git-scm.com/docs/git-rev-list
我发现这个相关问题对 Unix 有帮助,但似乎不适用于 Windows: https://unix.stackexchange.com/questions/16333/how-to-signal-the-end-of-stdin-input
您可以从 Windows 中的键盘发出 EOF 信号,方法是按 Ctrl+Z
,然后按 Enter
键。
当我从键盘输入文件到程序时,我用过它,它对我有用。我认为它也适用于这里。