##// END OF EJS Templates
keyword: remove "identify" and "remove" from nokwcommands...
keyword: remove "identify" and "remove" from nokwcommands These two commands care about the list of modified files returned by repo.status and we may need to do a full content comparison to populate that list.

File last commit:

r5495:363ba35f default
r6157:09b00faa default
Show More
test-execute-bit
15 lines | 231 B | text/plain | TextLexer
Bryan O'Sullivan
See if execute bit is honoured when we go back in time
r5494 #!/bin/sh
Patrick Mezard
test-execute-bit: skip if execute-bit is not supported
r5495 "$TESTDIR/hghave" execbit || exit 80
Bryan O'Sullivan
See if execute bit is honoured when we go back in time
r5494 hg init
echo a > a
hg ci -d'0 0' -Am'not executable'
chmod +x a
hg ci -d'1 0' -m'executable'
hg id
hg up 0
hg id
test -x a && echo executable -- eek || echo not executable -- whew