tests/test-rebase-templates.t
changeset 45796 e9555305c5c6
parent 45770 96fcc37a9c80
equal deleted inserted replaced
45795:c4ab93849383 45796:e9555305c5c6
    98   > --config command-templates.oneline-summary.rebase='override: {rev}'
    98   > --config command-templates.oneline-summary.rebase='override: {rev}'
    99   starting dry-run rebase; repository will not be changed
    99   starting dry-run rebase; repository will not be changed
   100   rebasing override: 7
   100   rebasing override: 7
   101   note: not rebasing override: 7, its destination already has all its changes
   101   note: not rebasing override: 7, its destination already has all its changes
   102   dry-run rebase completed successfully; run without -n/--dry-run to perform this rebase
   102   dry-run rebase completed successfully; run without -n/--dry-run to perform this rebase
       
   103 
       
   104 
       
   105 check namespaces and coloring (labels)
       
   106 
       
   107   $ hg tag -l -r 7 my-tag
       
   108   $ hg rebase -r 7 -d 8 -n
       
   109   starting dry-run rebase; repository will not be changed
       
   110   rebasing 7:f48cd65c6dc3 my-tag "Added b"
       
   111   note: not rebasing 7:f48cd65c6dc3 my-tag "Added b", its destination already has all its changes
       
   112   dry-run rebase completed successfully; run without -n/--dry-run to perform this rebase
       
   113   $ hg bookmark -r 7 my-bookmark
       
   114   $ hg rebase -r 7 -d 8 -n
       
   115   starting dry-run rebase; repository will not be changed
       
   116   rebasing 7:f48cd65c6dc3 my-bookmark my-tag "Added b"
       
   117   note: not rebasing 7:f48cd65c6dc3 my-bookmark my-tag "Added b", its destination already has all its changes
       
   118   dry-run rebase completed successfully; run without -n/--dry-run to perform this rebase
       
   119   $ hg rebase -r 7 -d 8 -n --color=debug
       
   120   [ ui.status|starting dry-run rebase; repository will not be changed]
       
   121   [ ui.status|rebasing [oneline-summary.changeset|7:f48cd65c6dc3] [oneline-summary.bookmarks|my-bookmark] [oneline-summary.tags|my-tag] "[oneline-summary.desc|Added b]"]
       
   122   [ ui.warning|note: not rebasing [oneline-summary.changeset|7:f48cd65c6dc3] [oneline-summary.bookmarks|my-bookmark] [oneline-summary.tags|my-tag] "[oneline-summary.desc|Added b]", its destination already has all its changes]
       
   123   [ ui.status|dry-run rebase completed successfully; run without -n/--dry-run to perform this rebase]