3

If I check out a file via SVN and change the permissions and/or owner of the file in my working directory, will those changes be reflected when I commit the file?

If so, how can I prevent this?

msturdy
  • 10,479
  • 11
  • 41
  • 52
  • possible duplicate of [Storing file permissions in Subversion repository](http://stackoverflow.com/questions/56149/storing-file-permissions-in-subversion-repository) – chepner May 23 '14 at 17:26
  • I would think this would be pretty simple to test yourself... – twalberg May 23 '14 at 18:05

1 Answers1

1

If you just change permissions or ownership nothing will happen on commit. Svn only detects changes to svn properties or data. There are some special properties which allow some minimal control. But you want to avoid any impact if I understood, so having no impact from local permissions changes is working out of the box...

jdehaan
  • 19,700
  • 6
  • 57
  • 97