How to show the diff specific to a named branch in mercurial

后端 未结 4 1192
青春惊慌失措
青春惊慌失措 2021-01-30 14:16

Assuming I have a named branch foo with two commits a, b:

      a       b       c  
------o-------o-------o------- # default
       \\          d         e
              


        
4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 14:48

    diff between branches:

    hg diff -r :

    show current branch's latest commit:

    hg log -r .

提交回复
热议问题