如何使用 git-parse-rev 的相对修订语法让 git-log 显示提交
git show-branch 使用可以由 git-parse-rev 解析的相对修订表达式显示提交,例如“dev~106^2~52”。如何从 git-log 获得相同的输出?
git show-branch displays commits using the relative revision expressions that can be parsed by git-parse-rev, for example "dev~106^2~52". How can I get the same output from git-log?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
否。
git log
的文档 (git help log
) 描述了使用--pretty=tformat:...
自定义输出的方法,但不幸的是,没有用于 git describe 样式修订标识符的占位符,也没有用于运行 shell 命令并使用其输出的占位符。要么可以做你想做的事。也许您可以向 Git 开发人员推荐它们。No.
The documentation for
git log
(git help log
) describes ways to customize the output using--pretty=tformat:...
, but unfortunately there is no placeholder forgit describe
-style revision identifiers, nor is there a placeholder to run a shell command and use its output. Either would make it possible to do what you want. Perhaps you can suggest them to the Git developers.是吗?:类似 git log | 的东西git name-rev --stdin,即查看
git name-rev
手册页获取该格式。我有一个类似的问题描述相对于父级^/ancestor~格式的标签的提交,该问题链接回此处;- )
Yes?: Something like
git log | git name-rev --stdin
, that is, see thegit name-rev
man page for obtaining this format.I had a similar question describe a commit relative to a tag in parent^/ancestor~ format which was linked back here ;-)