tests/test-histedit-outgoing.t
changeset 19835 44d7bfe08c14
parent 18995 0023a6e49268
child 20117 aa9385f983fa
equal deleted inserted replaced
19834:80633eac7b9d 19835:44d7bfe08c14
   100   #  f, fold = use commit, but fold into previous commit (combines N and N-1)
   100   #  f, fold = use commit, but fold into previous commit (combines N and N-1)
   101   #  d, drop = remove commit from history
   101   #  d, drop = remove commit from history
   102   #  m, mess = edit message without changing commit content
   102   #  m, mess = edit message without changing commit content
   103   #
   103   #
   104   0 files updated, 0 files merged, 0 files removed, 0 files unresolved
   104   0 files updated, 0 files merged, 0 files removed, 0 files unresolved
       
   105 
       
   106 test to check number of roots in outgoing revisions
       
   107 
       
   108   $ hg -q outgoing -G --template '{node|short}({branch})' '../r'
       
   109   @  f26599ee3441(foo)
       
   110   
       
   111   o  652413bf663e(default)
       
   112   |
       
   113   o  e860deea161a(default)
       
   114   |
       
   115   o  055a42cdd887(default)
       
   116   
       
   117   $ HGEDITOR=cat hg -q histedit --outgoing '../r'
       
   118   abort: there are ambiguous outgoing revisions
       
   119   (see "hg help histedit" for more detail)
       
   120   [255]
       
   121 
       
   122   $ hg -q update -C 2
       
   123   $ echo aa >> a
       
   124   $ hg -q commit -m 'another head on default'
       
   125   $ hg -q outgoing -G --template '{node|short}({branch})' '../r#default'
       
   126   @  3879dc049647(default)
       
   127   
       
   128   o  652413bf663e(default)
       
   129   |
       
   130   o  e860deea161a(default)
       
   131   |
       
   132   o  055a42cdd887(default)
       
   133   
       
   134   $ HGEDITOR=cat hg -q histedit --outgoing '../r#default'
       
   135   abort: there are ambiguous outgoing revisions
       
   136   (see "hg help histedit" for more detail)
       
   137   [255]
       
   138 
   105   $ cd ..
   139   $ cd ..