tests/test-debugbuilddag.t
author Matt Mackall <mpm@selenic.com>
Tue, 01 Feb 2011 17:29:38 -0600
branchstable
changeset 13334 2b2155623ee2
parent 11922 3e59059b2785
child 14042 9966c95b8c4f
permissions -rw-r--r--
merge with crew
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     1
  $ echo "[extensions]" >> $HGRCPATH
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     2
  $ echo "graphlog=" >> $HGRCPATH
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
     3
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     4
overwritten and appended files
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
     5
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     6
  $ rm -rf repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     7
  $ hg init repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     8
  $ cd repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
     9
  $ hg debugbuilddag '+2:f +3:p2 @temp <f+4 @default /p2 +2' -q -oa
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    10
dag
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    11
  $ hg debugdag -t -b
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    12
  +2:f
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    13
  +3:p2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    14
  @temp*f+3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    15
  @default*/p2+2:tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    16
tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    17
  $ hg id
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    18
  f96e381c614c tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    19
glog
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    20
  $ hg glog --template '{rev}: {desc} [{branches}] @ {date}\n'
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    21
  @  11: r11 [] @ 11.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    22
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    23
  o  10: r10 [] @ 10.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    24
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    25
  o    9: r9 [] @ 9.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    26
  |\
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    27
  | o  8: r8 [temp] @ 8.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    28
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    29
  | o  7: r7 [temp] @ 7.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    30
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    31
  | o  6: r6 [temp] @ 6.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    32
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    33
  | o  5: r5 [temp] @ 5.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    34
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    35
  o |  4: r4 [] @ 4.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    36
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    37
  o |  3: r3 [] @ 3.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    38
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    39
  o |  2: r2 [] @ 2.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    40
  |/
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    41
  o  1: r1 [] @ 1.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    42
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    43
  o  0: r0 [] @ 0.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    44
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    45
glog of
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    46
  $ hg glog --template '{rev}: {desc} [{branches}]\n' of
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    47
  @  11: r11 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    48
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    49
  o  10: r10 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    50
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    51
  o    9: r9 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    52
  |\
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    53
  | o  8: r8 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    54
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    55
  | o  7: r7 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    56
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    57
  | o  6: r6 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    58
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    59
  | o  5: r5 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    60
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    61
  o |  4: r4 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    62
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    63
  o |  3: r3 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    64
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    65
  o |  2: r2 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    66
  |/
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    67
  o  1: r1 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    68
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    69
  o  0: r0 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    70
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    71
glog af
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    72
  $ hg glog --template '{rev}: {desc} [{branches}]\n' af
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    73
  @  11: r11 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    74
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    75
  o  10: r10 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    76
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    77
  o    9: r9 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    78
  |\
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    79
  | o  8: r8 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    80
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    81
  | o  7: r7 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    82
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    83
  | o  6: r6 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    84
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    85
  | o  5: r5 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    86
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    87
  o |  4: r4 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    88
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    89
  o |  3: r3 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    90
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    91
  o |  2: r2 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    92
  |/
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    93
  o  1: r1 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    94
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    95
  o  0: r0 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    96
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    97
tags
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    98
  $ hg tags -v
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
    99
  tip                               11:f96e381c614c
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   100
  p2                                 4:d9d6db981b55 local
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   101
  f                                  1:73253def624e local
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   102
cat of
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   103
  $ hg cat of
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   104
  r11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   105
cat af
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   106
  $ hg cat af
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   107
  r0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   108
  r1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   109
  r5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   110
  r6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   111
  r7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   112
  r8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   113
  r9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   114
  r10
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   115
  r11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   116
  $ cd ..
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
   117
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   118
new and mergeable files
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
   119
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   120
  $ rm -rf repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   121
  $ hg init repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   122
  $ cd repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   123
  $ hg debugbuilddag '+2:f +3:p2 @temp <f+4 @default /p2 +2' -q -mn
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   124
dag
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   125
  $ hg debugdag -t -b
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   126
  +2:f
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   127
  +3:p2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   128
  @temp*f+3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   129
  @default*/p2+2:tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   130
tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   131
  $ hg id
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   132
  9c5ce9b70771 tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   133
glog
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   134
  $ hg glog --template '{rev}: {desc} [{branches}] @ {date}\n'
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   135
  @  11: r11 [] @ 11.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   136
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   137
  o  10: r10 [] @ 10.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   138
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   139
  o    9: r9 [] @ 9.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   140
  |\
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   141
  | o  8: r8 [temp] @ 8.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   142
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   143
  | o  7: r7 [temp] @ 7.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   144
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   145
  | o  6: r6 [temp] @ 6.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   146
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   147
  | o  5: r5 [temp] @ 5.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   148
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   149
  o |  4: r4 [] @ 4.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   150
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   151
  o |  3: r3 [] @ 3.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   152
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   153
  o |  2: r2 [] @ 2.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   154
  |/
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   155
  o  1: r1 [] @ 1.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   156
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   157
  o  0: r0 [] @ 0.00
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   158
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   159
glog mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   160
  $ hg glog --template '{rev}: {desc} [{branches}]\n' mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   161
  @  11: r11 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   162
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   163
  o  10: r10 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   164
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   165
  o    9: r9 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   166
  |\
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   167
  | o  8: r8 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   168
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   169
  | o  7: r7 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   170
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   171
  | o  6: r6 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   172
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   173
  | o  5: r5 [temp]
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   174
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   175
  o |  4: r4 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   176
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   177
  o |  3: r3 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   178
  | |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   179
  o |  2: r2 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   180
  |/
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   181
  o  1: r1 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   182
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   183
  o  0: r0 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   184
  
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
   185
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   186
man r4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   187
  $ hg manifest -r4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   188
  mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   189
  nf0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   190
  nf1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   191
  nf2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   192
  nf3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   193
  nf4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   194
cat r4 mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   195
  $ hg cat -r4 mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   196
  0 r0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   197
  1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   198
  2 r1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   199
  3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   200
  4 r2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   201
  5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   202
  6 r3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   203
  7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   204
  8 r4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   205
  9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   206
  10
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   207
  11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   208
  12
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   209
  13
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   210
  14
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   211
  15
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   212
  16
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   213
  17
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   214
  18
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   215
  19
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   216
  20
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   217
  21
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   218
  22
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   219
  23
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   220
man r8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   221
  $ hg manifest -r8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   222
  mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   223
  nf0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   224
  nf1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   225
  nf5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   226
  nf6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   227
  nf7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   228
  nf8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   229
cat r8 mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   230
  $ hg cat -r8 mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   231
  0 r0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   232
  1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   233
  2 r1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   234
  3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   235
  4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   236
  5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   237
  6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   238
  7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   239
  8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   240
  9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   241
  10 r5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   242
  11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   243
  12 r6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   244
  13
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   245
  14 r7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   246
  15
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   247
  16 r8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   248
  17
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   249
  18
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   250
  19
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   251
  20
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   252
  21
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   253
  22
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   254
  23
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   255
man
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   256
  $ hg manifest
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   257
  mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   258
  nf0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   259
  nf1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   260
  nf10
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   261
  nf11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   262
  nf2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   263
  nf3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   264
  nf4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   265
  nf5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   266
  nf6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   267
  nf7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   268
  nf8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   269
  nf9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   270
cat mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   271
  $ hg cat mf
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   272
  0 r0
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   273
  1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   274
  2 r1
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   275
  3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   276
  4 r2
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   277
  5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   278
  6 r3
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   279
  7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   280
  8 r4
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   281
  9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   282
  10 r5
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   283
  11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   284
  12 r6
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   285
  13
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   286
  14 r7
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   287
  15
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   288
  16 r8
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   289
  17
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   290
  18 r9
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   291
  19
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   292
  20 r10
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   293
  21
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   294
  22 r11
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   295
  23
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   296
  $ cd ..
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
   297
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   298
command
11337
0f3c8a47960e debugbuilddag: build a changelog dag from a concise description
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
diff changeset
   299
11922
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   300
  $ rm -rf repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   301
  $ hg init repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   302
  $ cd repo
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   303
  $ hg debugbuilddag '+2 !"touch X" +2' -q -o
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   304
dag
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   305
  $ hg debugdag -t -b
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   306
  +4:tip
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   307
glog
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   308
  $ hg glog --template '{rev}: {desc} [{branches}]\n'
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   309
  @  3: r3 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   310
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   311
  o  2: r2 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   312
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   313
  o  1: r1 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   314
  |
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   315
  o  0: r0 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   316
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   317
glog X
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   318
  $ hg glog --template '{rev}: {desc} [{branches}]\n' X
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   319
  o  2: r2 []
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   320
  
3e59059b2785 tests: unify test-debugbuilddag
Pradeepkumar Gayam <in3xes@gmail.com>
parents: 11686
diff changeset
   321
  $ cd ..