Results 1 through
2
while searching for:
"subversion"
How do you commit a file permission change in Subversion?
If you happen to chmod u+x a file you will not be able to commit this with svn. In fact svn status won't even notice that the file was even modified.
Here's how you're supposed to do it with svn:
user# svn propset svn:executable ON somescript
[...]
http://rockfloat.com/board/post/?id=579
July 18, 2007 @18:25
(Replies: 0)
(Rank: 0.000)
How can you generate a report of recent changes in a subversion repository, like a changelog?
Try looking into the following:
http://ch.tudelft.nl/~arthur/svn2cl/
http://mpy-svn-stats.berlios.de/
Both format the output of:
user# svn --xml -v log
The former uses xsl to create a typical changelog, the latter genera
[...]
http://rockfloat.com/board/post/?id=410
August 05, 2005 @05:27
(Replies: 0)
(Rank: 0.000)