Mercurial > hg
annotate tests/test-dirstate-future @ 10014:54cd28258ea7
status: add the --change option to display files changed in a revision
This option is similar to the one already used for the diff command.
Unfortunately, the c and C short option are already used for status, so there
is no corresponding short option. However, there is no short option for --rev
either, so that's consistent.
author | Gilles Moris <gilles.moris@free.fr> |
---|---|
date | Mon, 30 Nov 2009 23:51:06 +0100 |
parents | 1a7bcf58ba56 |
children |
rev | line source |
---|---|
9378
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
1 #!/bin/sh |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
2 |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
3 hg init |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
4 echo a > a |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
5 hg add |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
6 hg ci -m1 |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
7 |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
8 # set mtime of a into the future |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
9 touch -t 202101011200 a |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
10 |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
11 # status must not set a's entry to unset (issue1790) |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
12 hg status |
1a7bcf58ba56
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
13 hg debugstate |