2

我需要获取两个已知提交之间的提交 ID 列表。我使用了以下命令:

git show --format=format:%H --quiet commitA...commitB

在合并提交之前,它可以完美运行。IE:

*   c36a37b
|\
| * 92187d9
* | e24d2c4
|/
* eef755e

输出如下:

$ git show --format=format:%H --quiet c36a37b...eef755e
c36a37b80caf2bae7b4833617443f4dfea8d8816

e24d2c4292baef4106976373ff3d01341834648d
92187d9a1002027c7d99824f2561467692bfd6b3

当我更改show命令并log改用:

$ git log --format=format:%H --quiet c36a37b...eef755e
c36a37b80caf2bae7b4833617443f4dfea8d8816
e24d2c4292baef4106976373ff3d01341834648d
92187d9a1002027c7d99824f2561467692bfd6b3

请注意,第一次提交后没有空行。我并不热衷于使用git showover git log- 我什至不记得我从哪里得到这个想法。但是这个多余的空行导致我的程序失败,我想知道它是否有什么特殊含义。

Git 版本 1.9.5。

4

2 回答 2

3

我在手册页中没有看到任何解释为什么该空白行存在的内容。但是,如果您将输出传递给另一个程序,则无论如何都不需要瓷器命令,因为输出格式可能会发生变化。你想要的命令是

git rev-list c36a37b...eef755e

更新:对于你的具体问题——它有什么意义——我的回答是没有你可以指望的,因为(a)手册页中没有提到它,并且(b)的输出git show不是预期的被其他程序解析。

于 2015-04-02T15:41:49.307 回答
0

这(来自git show docs)是否有任何线索?

    format:
...

If you add a + (plus sign) after % of a placeholder, a line-feed is inserted immediately before the expansion if and only if the placeholder expands to a non-empty string.

If you add a - (minus sign) after % of a placeholder, all consecutive line-feeds immediately preceding the expansion are deleted if and only if the placeholder expands to an empty string.

If you add a ` ` (space) after % of a placeholder, a space is inserted immediately before the expansion if and only if the placeholder expands to a non-empty string.

对比

    tformat:

    The tformat: format works exactly like format:, except that it provides "terminator" semantics instead of "separator" semantics. In other words, each commit has the message terminator character (usually a newline) appended, rather than a separator placed between entries. This means that the final entry of a single-line format will be properly terminated with a new line, just as the "oneline" format does. For example:

    $ git log -2 --pretty=format:%h 4da45bef \
      | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
    4da45be
    7134973 -- NO NEWLINE

    $ git log -2 --pretty=tformat:%h 4da45bef \
      | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
    4da45be
    7134973

    In addition, any unrecognized string that has a % in it is interpreted as if it has tformat: in front of it. For example, these two are equivalent:
于 2017-07-29T06:23:06.690 回答