X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Message-ID: <33052301.post@talk.nabble.com> Date: Thu, 29 Dec 2011 13:44:16 -0800 (PST) From: cxira To: cygwin AT cygwin DOT com Subject: Re: Distributed Git not compiled under Cygwin? In-Reply-To: <4EFCD4A5.70206@bopp.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <33047124 DOT post AT talk DOT nabble DOT com> <4EFB8FC1 DOT 7060307 AT bopp DOT net> <4EFB9714 DOT 2070103 AT bopp DOT net> <33049604 DOT post AT talk DOT nabble DOT com> <4EFC834D DOT 5090805 AT bopp DOT net> <33052021 DOT post AT talk DOT nabble DOT com> <4EFCD4A5 DOT 70206 AT bopp DOT net> X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Jeremy Bopp-3 wrote: > > Another option may be to hack a post-save action into gVim that uses > Cygwin's chmod command to remove the execute bit from newly saved files: > > http://stackoverflow.com/questions/4627701/vim-how-to-execute-automatically-execute-a-shell-command-after-saving-a-file > > If all else fails, you could also install the Windows-native build of > Git and use that instead. Cygwin's gVim may also make sense to use here > instead of the native one, but I remember you saying that the native > gVim integrates better for what you do. > I moved away from msysgit because it wasn't displaying colors properly in mintty. As for a vim script, I put together something that executes `chmod 0644` when saving new files only: " Change permissions on new files to be 0644 in cygwin augroup filePerms autocmd! autocmd BufWritePre * call NewFileTest() augroup END function! NewFileTest() if !filereadable(expand('')) " If the file cannot be found pre-write, add a post-write command autocmd filePerms BufWritePost * call NewFileAlter() endif endfunction function! NewFileAlter() " Remove command after it is executed once autocmd! filePerms BufWritePost " Change permissions silent execute "!C:\\cygwin\\bin\\bash.exe -c \"/usr/bin/chmod 0644 '" . substitute(expand(""), "^\\(.\\):/", "/cygdrive/\\1/", "") . "'\"" endfunction There's a very brief appearance of the command prompt when I save a new file, but I think it's a suitable and portable solution. Thanks for the help. -- View this message in context: http://old.nabble.com/Distributed-Git-not-compiled-under-Cygwin--tp33047124p33052301.html Sent from the Cygwin list mailing list archive at Nabble.com. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple