Setting the SVN "execute" bit in a Subversion repository using TortiseSVN or command line SVN - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:49:26Zhttp://stackoverflow.com/feeds/question/103395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/103395/setting-the-svn-execute-bit-in-a-subversion-repository-using-tortisesvn-or-comm2Setting the SVN "execute" bit in a Subversion repository using TortiseSVN or command line SVNKPexEA2008-09-19T16:20:28Z2009-11-13T07:44:13Z
<p>I've got an open-source app that is hosed at code.google.com. It is cross platform ( Linux / Windows / Mac ). I uploaded the code initially from a WinXP machine using TortiseSVN and it seems that none of the "configure" batch files that are used for the linux build have their "execute" bits set. </p>
<p>What would be the easiest way to set these for the files that need them. Using TortiseSVN would be easier I suppose, but if it can't, then I could also use the command line SVN on my linux machine.</p>
http://stackoverflow.com/questions/103395/setting-the-svn-execute-bit-in-a-subversion-repository-using-tortisesvn-or-comm/103498#1034983Answer by bmdhacks for Setting the SVN "execute" bit in a Subversion repository using TortiseSVN or command line SVNbmdhacks2008-09-19T16:32:34Z2008-09-19T16:32:34Z<p>Here's how to do it on the command line:</p>
<pre><code>for file in `find . -name configure`; do
svn ps svn:executable yes ${file}
done
</code></pre>
<p>Or for just one file (<code>configure</code> is the filename here):</p>
<pre><code>svn ps svn:executable yes configure
</code></pre>
http://stackoverflow.com/questions/103395/setting-the-svn-execute-bit-in-a-subversion-repository-using-tortisesvn-or-comm/103540#1035401Answer by Andreas for Setting the SVN "execute" bit in a Subversion repository using TortiseSVN or command line SVNAndreas2008-09-19T16:38:56Z2008-09-19T16:38:56Z<p>With tortoise SVN, it's quite easy: you can select several files (may be from search results, so they don't have to be in the same directory), select "properties" in the TortoiseSVN menu, add the needed property (there is a drop-down list of the mostly used properties, in this case "svn:executable") and set the value (in this case "*"). If committing the changed files and checking them out under linux, the executable bit will be set.</p>
<p>If you want to set more than one property at once, it may be more secure (in case of mistakes) to first set the properties correctly for one file, export them into a file, select all needed files, select the "properties" menu and import the previously saved properties. </p>
http://stackoverflow.com/questions/103395/setting-the-svn-execute-bit-in-a-subversion-repository-using-tortisesvn-or-comm/1723303#17233030Answer by tottinge for Setting the SVN "execute" bit in a Subversion repository using TortiseSVN or command line SVNtottinge2009-11-12T16:00:53Z2009-11-13T07:44:13Z<pre><code>find . -type f -name "*.bat" -exec svn propset svn:executable yes "${}" \;
</code></pre>
<p>Of course the same goes for .exe, etc.</p>