发送 git 命令时命令开关/标志顺序重要吗?

发布于 2025-01-13 01:41:47 字数 266 浏览 0 评论 0原文

命令:

git config --list --show-origin

git config --show-origin --list

是相同的命令,但交换了开关/标志顺序。这两个命令都适用于 Windows 的 Git Bash,因此显然对于某些命令,当使用带有多个开关/标志的命令时,开关/标志顺序并不重要...

但是

是否有开关/标志顺序很重要的命令?

The commands:

git config --list --show-origin

and

git config --show-origin --list

are the same command with the switch/flag order swapped around. Both commands work on Git Bash for Windows, so obviously for some commands, when using the command with multiple switch/flags, the switch/flag order doesn't matter...

BUT

are there commands where the switch/flag order does matter?

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

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

发布评论

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

评论(1

谁人与我共长歌 2025-01-20 01:41:47

是的,有。 git rev-parse 按照参数出现的顺序打印输出。因此,如果您运行 git rev-parse --absolute-git-dir --git-common-dir ,将产生与 git rev-parse --git-common-dir 不同的输出--absolute-git-dir。

此外,虽然某些程序(包括一些但不是全部)Git 子命令以任何顺序接受选项和参数,但这并不能保证正常工作,特别是在编写脚本时,您应该始终假设所有选项必须位于所有非选项参数之前,因为这种行为是 POSIX 所要求的。

Yes, there are. git rev-parse prints output in the order that the arguments appear. So if you run git rev-parse --absolute-git-dir --git-common-dir, that will produce different output than git rev-parse --git-common-dir --absolute-git-dir.

Additionally, while some programs, including some, but not all, Git subcommands, accept options and arguments in any order, that's not guaranteed to work, and when scripting especially, you should always assume that all options must precede all non-option arguments, since this behaviour is required by POSIX.

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