什么是Mercurial相当于`git log --graph --decorate --oneline --all`?

时间:2016-05-10 22:21:55

标签: git mercurial

我该怎么做

git log --graph --decorate --oneline --all

在mercurial?

  • 我想要--graph,所以我可以看到提交之间的关系
  • 我想要--decorate,以便打印每个提示和/或每个提交的分支名称,包括本地远程跟踪分支,它们可以准确显示任何已配置的远程(我有两个远程)的情况;它还显示了像HEAD这样的特价,我也希望看到它。
  • 我想要--oneline,以便在屏幕上看到很多节点
  • 我想--all,所以我看到所有分支不仅仅是我检查过的分支
    • 包括书签
    • 包括遥控器的情况(与当地情况相比)

5 个答案:

答案 0 :(得分:4)

使用Mercurial 3.8只需使用

配置.hgrc
[experimental]
graphstyle.parent = |
graphstyle.grandparent = '
graphstyle.missing = 
graphshorten = true

并使用适当的template获取

$ hg log --graph --template "{rev}{ifeq(branch,'default','',' {branch}')}{if(bookmarks,' {bookmarks}')}{if(tags,' {tags}')} - {desc|firstline}"
...
| o  20881 - transaction: add onclose/onabort hook for pre-close logic
| o  20880 - clone: put streaming clones in a transaction
| o  20879 - fncache: remove the rewriting logic
| o  20878 - pull: prevent duplicated entry in `op.pulledsubset`
| o  20877 - bundle2: part params
| o  20876 - bundle2: support for bundling and unbundling payload
| o  20875 - merge with stable
|/|
o |  20874 stable - Added signature for changeset 3f83fc5cfe71
o |  20873 stable - Added tag 2.9.2 for changeset 3f83fc5cfe71
o |  20872 stable 2.9.2 - backout: correct commit status of no changes made (BC)
o |  20871 stable - backout: document return code of merge conflict
| o  20870 - merge with stable
|/|
o |  20869 stable - i18n: fix "% inside _()" problems
o |  20868 stable - i18n: fix "% inside _()" problems
o |  20867 stable - merge: fix lack of "%s" in format string causing TypeError a
o |  20866 stable - i18n-pt_BR: synchronized with c57c9cece645
o |  20865 stable - i18n-ja: synchronized with e259d4c462b5
| o  20864 - bundle2: support unbundling empty part
| o  20863 - revset: raise ValueError when calling min or max on empty smartset
| o  20862 - revpair: smartset compatibility
| o  20861 - revsetbenchmark: add entry for ::rev::
:

我使用此别名

[alias]
ll = log -l 12 --graph --template "{rev}{ifeq(branch,'default','',' {branch}')}{if(bookmarks,' {bookmarks}')}{if(tags,' {tags}')} - {desc|firstline}"

所以

$ hg ll
o  29100 @default tip - templater: add separate() template function
o  29099 - bookmarks: jettison bmstore's write() method per deprecation policy
o    29098 - merge with stable
|\
| o  29097 stable - deprecation: gate deprecation warning behind devel configurn
| |
| ~
o  29096 - crecord: update downarrowshiftevent() docstring, remove todo
o  29095 - crecord: remove things that don't happen in functions from their docs
o  29094 - crecord: remove skipfolded keyword argument from patchnode.previtem()
o  29093 - crecord: update a copy-pasted comment in downarrowshiftevent()
o  29092 - crecord: drop the version condition for amend
o  29091 - crecord: add/remove blank lines (coding style)
o  29090 - localrepo: jettison parents() method per deprecation policy (API)
o  29089 - revset: define _parsealias() in _aliasrules class
|
~

我认为与Git

非常相似
$ git log --graph --decorate --oneline --all
* d32f204 (origin/master, origin/HEAD) ; Remove instrumentation of tramp.el
* 4c7f329 ; Remove instrumentation of tramp-tests.el
* 51c816b Fix a problem of tramp-tests on hydra.
* 62d7aca Pacify byte-compiler in lisp/vc
*   9e6302c ; Merge from origin/emacs-25
|\  
* \   6d0703a Merge from origin/emacs-25
|\ \  
* | | 433d366 'text-quoting-style' now affects only ` and '
* | | 8939ae6 Revert "Fix spurious fontification of "for (; a * b;)" in CC Mod" 
* | | cfa59d6 ; Instrument tramp-tests.el
* | | c20cc09 Move "Recent messages" earlier in report-emacs-bug
* | | a88f22b Pacify byte compiler in tramp.el
* | |   c8b7a6a Merge from origin/emacs-25
|\ \ \  
* \ \ \   9418ab3 ; Merge from origin/emacs-25
|\ \ \ \  
* | | | | d6dac36 ; Instrument tramp.el
* | | | | a8231e0 CC Mode now uses the new :after-hook feature of define-deriv-e
* | | | | 608f2bd ; Instrument tramp-tests.el
* | | | | fd45b52 Fix the jit-lock-fontify-now test names
:

答案 1 :(得分:4)

hg中{p> --graph--graph--all的效果是默认值。

对于我--decorate中的--oneline.hgrc

[alias]
la = log --graph --template {oneline}

[templatealias]
oneline = '{hash}{myBranch}{myBookmarks}{myTags} {name} {commitMsg}\n'
hash = "{label(ifeq(phase, 'secret', 'yellow', ifeq(phase, 'draft', 'blue', 'red')), node|short)}"
myBranch = "{ifeq(branch, 'default', '', label('green', ' ({branch})'))}"
myBookmarks = "{bookmarks % ' {bookmark}{ifeq(bookmark, active, '*')}{bookmark}'}"
myTags = "{label('yellow', tags % ' {tag}')}"
name = '{label('blue', author|person)}'
commitMsg = '{desc|firstline|strip}'

[experimental]
graphshorten = true

此解决方案不使用已弃用的--style参数。相反,正如您在别名部分中看到的那样,它由hg la通过--template选项激活。模板可以嵌套,“oneline”的名称将显示散列,分支,书签,标签,提交者和提交消息。

散列将根据此示例中的提交阶段更改颜色。

即使模板只是建议每行的最终换行符,hg在每次提交之间添加一个空行。 graphshorten = true选项可以避免这种情况。

您需要扩展程序才能使用类似于远程跟踪分支机构的概念。

这里的结果(很棒的颜色缺失):

| o  821ee2270f00 (lowercase_eats_whitespace) Robert Siemer add 'lowercase_eats_whitespace' directive
| o  9a86b49dc3ba (settings_passing) Robert Siemer restructure settings-passing in parsers and grako
|/
o    31664ddc943b Juancarlo Añez Merged in siemer/grako/siemer_fixup_regex (pull request #43)
|\
| o  317cea8eba42 (siemer_fixup_regex) Robert Siemer buffering.py: remove a superfluous regexp.DOTALL from a '[...]+' pattern
|/
o  31641ef78ba8 apalala Added tag 3.9.1 for changeset f33a2e80bb7d
o  f33a2e80bb7d 3.9.1 apalala Getting ready for release 3.9.1

答案 2 :(得分:3)

没有直接的等价物(或者,如果有的话,我想知道:-))。

其中一些原因仅仅是因为某些内容不适用于Mercurial,其中任何给定的提交都在一个且只有一个分支上,hg log默认显示所有分支上的所有提交。同样,没有HEAD这样的东西:有一个当前分支和一个当前提交,您可以将其命名为分支.或修订版.。这些函数类似HEAD,但它们不能是匿名分支。

由于没有远程跟踪分支,因此无法单独查看遥控器。您有任何传入提交(hg incoming不打印任何内容)因此它已经存在于日志输出中,或者您没有(因此您必须运行hg pull,通常没有-u才能获得它, 1 以便看到它。)

当前提交在hg log -G(又名hg glog)输出中显示为@而不是o,这就是您识别它的方式。

这是我使用的(不完全令人满意,我总是想念拓扑排序):

[alias]
# lga comes from
# http://jamie-wong.com/2012/07/11/my-mercurial-setup-and-workflow-at-khan-academy/
lga = glog --style ~/.hgstuff/map-cmdline.lg

此时此网址仍然有效,但这是我的map-cmdline.lg文件的内容。请注意,颜色是硬编码的;在我写这篇文章的时候,hg没有命名的颜色词(可能还没有,我对最新的hg更新已经过时了):

changeset = '\033[0;31m{rev}:{node|short}:{phase} {branches}{bookmarks}{tags} \033[0;34m{author|person}\033[0m\n{desc|firstline|strip} \033[0;32m({date|age})\033[0m\n\n'
changeset_verbose = '\033[0;31m{rev}:{node}:{phase} \033[0;34m{author|person}\033[0m {desc|firstline|strip} \033[0;32m({date|age}) {branches}{bookmarks}{tags}\n\n'

start_branches = ' '
branch = '\033[0;32m{branch}\033[0m'

start_bookmarks = ' '
bookmark = '\033[0;32m[{bookmark}]\033[0m '
last_bookmark = '\033[0;31m[{bookmark}]\033[0m'

start_tags = ' '
tag = '\033[0;32m{tag}\033[0m, '
last_tag = '\033[0;32m{tag}\033[0m'

1 请注意,如果您尝试将某些Hg工作流与Git等效项等同,则此处存在一个小缺陷,反之亦然。特别是,hg incoming可以列出5个提交,然后hg pull可以获取其中的12个,因为有人在这两个步骤之间推了7个。 Git的独立fetch步骤和远程跟踪分支为您解决了这个问题。处理它的另一种方法,我出于其他原因使用了一段时间,就是保留一个本地中间Mercurial存储库以便从共享库中进行拉取和推送。

也就是说,如果我们将repo U 指定为上游共享存储库,我们在本地创建一个 I 克隆,然后是 I 的克隆在 W 做工作。然后,我们更新 I (使用hg pull -u),然后在 W 中查看hg incoming(和hg outgoing)以获得速度和一致性。最好直接从 W 推送到 U 以避免不得不对提交阶段大惊小怪,但由于其他原因这是一个痛苦。我从来没有找到一个真正令人满意的设置,并且只要我在现场工作就放弃了中间存储库:它更适合处理慢速网络。

答案 3 :(得分:2)

第三次尝试,@santiagopim的后续行动。

是的,Mercurial和Git使用了很多不同的概念(没有远程跟踪,默认情况下拉|推送所有分支),但是:如果你想看到更多Git风格的Mercurial和许多具有不同历史的远程回购,你可以:

  • 使用santiagopim的优秀模板(或使用torek的提示将其扩展为功能齐全的风格)
  • 添加了hgremotenamesremotebranches个扩展名(简而言之,为每个提取的远程名称添加描述性书签)

获取类似Git的日志。

答案 4 :(得分:0)

尝试TortoiseHg。它不是命令行,但它符合要求。

它还突出了每个分支的提示(在mercurial中称为“head”)。只显示分支名称不会突出显示它们,因为每个提交都有一个分支名称。