Mercurial > evolve
annotate tests/test-options.t @ 3389:eacf6149b678
uncommit: add a new flag `--revert` to discard wdir changes after uncommit
This patch adds a new flag to `hg uncommit` using which one can discard the wdir
changes which are left after the operation. Both the changes, the ones which
were before the uncommit and the ones which were added to wdir as a result of
uncommit as cleared out.
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Tue, 09 Jan 2018 20:01:50 +0530 |
parents | 9f42f819267b |
children | 8fcee1e65e29 |
rev | line source |
---|---|
1226 | 1 $ cat >> $HGRCPATH <<EOF |
2 > [ui] | |
3 > logtemplate={rev}:{node|short}[{bookmarks}] ({obsolete}/{phase}) {desc|firstline}\n | |
4 > [extensions] | |
5 > EOF | |
1806
9f42f819267b
evolve: move the extensions to 'hgext3rd'
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
1226
diff
changeset
|
6 $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH |
1226 | 7 |
8 $ mkcommit() { | |
9 > echo "$1" > "$1" | |
10 > hg add "$1" | |
11 > hg ci -m "add $1" | |
12 > } | |
13 | |
14 $ hg init repo | |
15 $ cd repo | |
16 $ mkcommit a | |
17 $ mkcommit b | |
18 | |
19 test disabling commands | |
20 | |
21 $ cat >> .hg/hgrc <<EOF | |
22 > [experimental] | |
23 > evolution=createmarkers | |
24 > allowunstable | |
25 > exchange | |
26 > EOF | |
27 $ hg prune | head -n 2 | |
28 hg: unknown command 'prune' | |
29 Mercurial Distributed SCM | |
30 |