Mercurial > evolve
comparison hgext/evolve.py @ 1464:d830d4e9f212 stable
fold: avoid using x:y in the help
Suggesting "x:y" is a bad idea because x:y is a very deceptive revset.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 26 Jun 2015 00:59:22 -0700 |
parents | 71a3aa0349c5 |
children | 777e5c369d99 |
comparison
equal
deleted
inserted
replaced
1463:71a3aa0349c5 | 1464:d830d4e9f212 |
---|---|
2629 hg fold 'draft()' | 2629 hg fold 'draft()' |
2630 | 2630 |
2631 See :hg:`help phases` for more about draft revisions and | 2631 See :hg:`help phases` for more about draft revisions and |
2632 :hg:`help revsets` for more about the `draft()` keyword | 2632 :hg:`help revsets` for more about the `draft()` keyword |
2633 | 2633 |
2634 - Fold revisions 3, 4, 5, and 6 with the working directory parent:: | 2634 - Fold revisions between 3 andd 6 with the working directory parent:: |
2635 | 2635 |
2636 hg fold 3:6 | 2636 hg fold 3::6 |
2637 | 2637 |
2638 - Fold revisions 3 and 4: | 2638 - Fold revisions 3 and 4: |
2639 | 2639 |
2640 hg fold "3 + 4" --exact | 2640 hg fold "3 + 4" --exact |
2641 | 2641 |