Re: [fossil-users] Managing file attributes of repository files

2010-10-19 Thread Joshua Paine
The only way I've been able to reliably set the execute bit when it isn't set already is to: $ fossil rm filename $ fossil commit -m you put your file in, you take your file out $ chmod +x filename $ fossil add filename $ fossil commit -m you put your file in and you shake it all about --

Re: [fossil-users] Managing file attributes of repository files

2010-10-19 Thread Joshua Paine
On 10/19/2010 10:00 AM, Richard Hipp wrote: The main complication is getting the permissions to be transmitted reliably through a windows checkout. (Why is it always windows that gives trouble?) Going between *nix and windows systems, it seems every file windows touches gets an execute bit

Re: [fossil-users] Managing file attributes of repository files

2010-10-19 Thread altufaltu
fossil chmod is a good idea! - Altu -Original Message- From: Joshua Paine jos...@letterblock.com To: fossil-users@lists.fossil-scm.org Sent: Tue, Oct 19, 2010 8:04 pm Subject: Re: [fossil-users] Managing file attributes of repository files On 10/19/2010 10:00 AM, Richard Hipp wrote