gpt4 book ai didi

git - 如何按标签过滤git log?

转载 作者:行者123 更新时间:2023-12-04 03:04:59 26 4
gpt4 key购买 nike

我正在尝试按标签过滤 git log。我试过使用 --tags="3.5.0" ,根据 documentation ,但它不起作用,因为它返回标签之前和之后的所有提交。

我想怎么用这个?

最佳答案

过滤器可以包括任何东西。例如,git log 3.5.0将为您提供该标签的所有提交。 git log 3.4.0..3.5.0将输出这些标签之间的所有提交。如果您只想查看标签的提交,请使用 git show 3.5.0 .如果您必须查看所有标签及其各自的提交,例如 git tag -l | xargs git show是可以考虑的。

另外,不要忘记添加 --decorategit log实际查看与提交相关的标签。

关于git - 如何按标签过滤git log?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45439379/

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