git log --first-parent
省略了除提交合并提交的第一个父项以外的所有内容。
示例:
$ git log --oneline --graph
* 087f5ed Master C
* 36c50a2 Merge branch 'feature'
|\
| * 98c89df Feature B
| * 89b3a7b Feature A
* | 9a95133 Master B
|/
* 766c9b0 Master A
$ git log --oneline --graph --first-parent
* 087f5ed Master C
* 36c50a2 Merge branch 'feature'
* 9a95133 Master B
* 766c9b0 Master A
是否有Mercurial等效物?
答案 0 :(得分:3)
hg log -r '_firstancestors(...)'
有一个直接的等价物:隐藏的revset _firstancestors
跟随每个合并的第一个父(p1)侧。在Mercurial中,就像在Git中一样,第一个父项是在调用hg merge [second parent]
时签出的提交。
hg log -r '_firstancestors(myfeature)'
'隐藏'表示它以下划线开头,并未在帮助等中列出,但如果您知道它存在,仍然可以使用。我不知道它隐藏的原因。
此revset别名列出了功能分支上的所有提交,而忽略了master
合并到分支中以使其保持最新时的所有祖先。 (我工作的商店更喜欢合并重新定价)。
[revsetalias]
feature($1) = _firstancestors($1) and not _firstancestors(master)
[alias]
f = log -r "feature($(echo $HG_ARGS| sed 's/^f //'))"
示例用法(使用我自己的日志记录模板):
$ hg f myfeature
o 423 myfeature default/myfeature -- Esteis -- 2016-07-12 -- 123abc
| this
o 422 -- Esteis -- 2016-07-12 -- 123def
|\ merge master into myfeature
o ~ 421 -- Esteis -- 2016-07-12 -- 456abc
| that
o 420 -- Esteis -- 2016-07-12 -- 789def
| and the other
答案 1 :(得分:1)
您可以使用revsets:
hg log -r "p1(merge())"
merge()
获取所有合并提交,p1()
获取这些提交的第一个父级。
使用hg help revsets
获取有关revsets的更多信息。
答案 2 :(得分:1)
>hg glog -r 410:426 --template "{rev} - {desc|firstline|fill68}\n"
o 426 - Merge test fixes for dulwich changes and output changes.
|\
| o 425 - Merge incoming fix.
| |\
| | o 424 - getremotechanges: fix incoming support
| | |
o | | 423 - overlay: stop using deprecated tree.entries() method
| | |
| o | 422 - Fix all-version-tests.
| | |
o | | 421 - Test output format tweaks for test-outgoing.
| | |
o | | 420 - test-incoming: fixes for hg 1.7
| | |
| o | 419 - Merge fix for `hg out` failing on empty repo.
| |\ \
| | o | 418 - In some situations where a reference is being used but does not
| | | | exist in _map_git or _map_hg, silently skip the reference rather
| | | | than throwing an error. This allows hg outgoing to work on
| | | | repositories which do not contain any revisions at all.
| o | | 417 - only want heads and tags
| |/ /
| o | 416 - test-url-parsing: update expecations missed by edaadbd99074
| | |
| o | 415 - to be recognized port number in path to repository
| | |
| o | 414 - Unbreak outgoing to non-git repos with hg pre-1.9
| | |
| o | 413 - test fixes for progress cleanup
| |/
| o 412 - Fix mercurial issue2855
| |
| o 411 - Convert dulwich progress into mercurial ui.progress
|/
o 410 - test-incoming: only run on hg 1.7.x and newer
我使用部分真实存储库DAG(hg-git存储库)而不是gist的极端退化情况。我希望,对于正在解决的问题,选择足够指示性。
需要的revset(简单英语)将
“范围A:B没有第二个父级,它是合并集的祖先”
在revset功能语言(TBT!)
-r "410::426 - (p2(merge()) or ancestors(p2(merge())))"
如果作为源的全部变更集,更可读的形式将类似于
击> <击> hg log -r "!(p2(merge()) or ancestors(p2(merge())))"
击>
修改1
我测试了revset,重新思考了方法论(而不是排除我想要只需要添加所需的到空集),最近迭代我的用例现在(有bug,找不到解决方案)是
(p1(ancestors(p1(426))) or p1(426) or 426) and 410::426
其中(仍然)包含一些不需要的修订
答案 3 :(得分:0)
hg log --follow-first
似乎做了大致相同的事情,有一些规定:
它已被弃用(我找不到任何解释)。
我无法弄清楚如何让它显示除了当前变更集的直线历史以外的任何内容(例如,显示两个发散头的第一个父项后的历史记录(相当于{{1虽然这可能仅仅是因为我对Mercurial缺乏了解。
它显示带有git log --first-parent branch-a branch-b
的空分支行:
hg log -G
上面的示例可能看起来不太糟糕,但请参阅https://gist.github.com/MaxNanasy/5184202以获取此行为导致难以置信的输出的示例。
如果问题#2无法克服,此问题可能无关紧要,因为没有$ hg log -G --template '{node|short} {desc|firstline}'
@ 51b90923fc9d Master C
|
o bb51d979fd68 Merge branch 'feature'
|\
| o a9ca2597ebbc Feature B
| |
| o d0a54af09272 Feature A
| |
o | 77ceb31100be Master B
|/
o b5a0b2c7468f Master A
$ hg log -G --template '{node|short} {desc|firstline}' --follow-first
@ 51b90923fc9d Master C
|
o bb51d979fd68 Merge branch 'feature'
|\
o | 77ceb31100be Master B
|/
o b5a0b2c7468f Master A
的{{1}}将是使用hg log
AFAICT的唯一有用方式。