Mercurial > public > mercurial-scm > hg
diff tests/test-subrepo-deep-nested-change.t @ 24230:23438bceba04
largefiles: report the source of copied/moved largefiles in status -C
Previously, the source was silently skipped because the largefile was in the
list of changed files, but the standin was in the copies dictionary. The source
is only displayed if the changed file is a key in the copies dictionary.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 25 Jan 2015 02:45:49 -0500 |
parents | e1dbe0b215ae |
children | a8595176dd64 |
line wrap: on
line diff
--- a/tests/test-subrepo-deep-nested-change.t Sun Mar 08 00:04:03 2015 -0500 +++ b/tests/test-subrepo-deep-nested-change.t Sun Jan 25 02:45:49 2015 -0500 @@ -419,4 +419,24 @@ A a.dat A a.txt + $ hg ci -m "add a.*" + $ hg mv a.dat b.dat + $ hg mv foo/bar/abc foo/bar/def + $ hg status -C + A b.dat + a.dat + A foo/bar/def + foo/bar/abc + R a.dat + R foo/bar/abc + + $ hg ci -m "move large and normal" + $ hg status -C --rev '.^' --rev . + A b.dat + a.dat + A foo/bar/def + foo/bar/abc + R a.dat + R foo/bar/abc + $ cd ..