equal
deleted
inserted
replaced
1 #!/bin/sh |
|
2 |
|
3 "$TESTDIR/hghave" symlink || exit 80 |
|
4 |
|
5 hg init a |
|
6 cd a |
|
7 |
|
8 echo '% directory moved and symlinked' |
|
9 mkdir foo |
|
10 touch foo/a |
|
11 hg ci -Ama |
|
12 mv foo bar |
|
13 ln -s bar foo |
|
14 echo '% now addremove should remove old files' |
|
15 hg addremove |
|