equal
deleted
inserted
replaced
1 #!/bin/sh |
|
2 |
|
3 "$TESTDIR/hghave" execbit || exit 80 |
|
4 |
|
5 hg init repo |
|
6 cd repo |
|
7 echo foo > foo |
|
8 chmod 644 foo |
|
9 hg ci -qAm '644' |
|
10 |
|
11 chmod 755 foo |
|
12 hg ci -qAm '755' |
|
13 |
|
14 echo '% reverting to rev 0' |
|
15 hg revert -a -r 0 |
|
16 hg st |
|
17 hg diff --git |
|