From Healthcare Robotics Wiki
Links
chmod for subversion
- making a file an executable:
- $ svn propset svn:executable ON somescript
- $ svn propdel svn:executable somescript
- More details here
Creating and applying a patch:
- svn diff > ~/fix_ugly_bug.diff
- patch -p0 -i ~/fix_ugly_bug.diff
More details here