Maintaining file permissions across SVN updates?
Posted
by Mark Mayo
on Stack Overflow
See other posts from Stack Overflow
or by Mark Mayo
Published on 2010-05-27T10:54:40Z
Indexed on
2010/05/27
11:01 UTC
Read the original article
Hit count: 148
I have a series of python scripts with execute permissions in Linux. They are stored in SVN.
If I then run svn up
to update them, the overwritten files are back to 644 - ie no execute permissions for anyone.
Yes I could just script it to chmod +x *
afterwards, but surely there's a way to store permissions in SVN or to maintain them when you update?
Any suggestions appreciated.
© Stack Overflow or respective owner