Setting Mercurial's execute bit on Windows

Posted by Joe on Stack Overflow See other posts from Stack Overflow or by Joe
Published on 2010-04-24T01:22:04Z Indexed on 2010/04/24 1:33 UTC
Read the original article Hit count: 326

I work on a Mercurial repository that is checked out onto an Unix filesystem such as ext3 on some machines, and FAT32 on others.

In Subversion, I can set the svn:executable property to control whether a file should be marked executable when checked out on a platform that supports such a bit. I can do this regardless of the platform I'm running SVN on or the filesystem containing my working copy.

In Mercurial, I can chmod +x to get the same effect if the clone is on a Unix filesystem. But how can I set (or remove) the executable bit on a file on a FAT filesystem?

© Stack Overflow or respective owner

Related posts about mercurial

Related posts about Windows