Difference between revisions of "Subversion"
From Healthcare Robotics Wiki
Advaitjain (Talk | contribs) (→chmod for subversion) |
Advaitjain (Talk | contribs) (→chmod for subversion) |
||
| Line 5: | Line 5: | ||
==== chmod for subversion ==== | ==== chmod for subversion ==== | ||
* making a file an executable: | * making a file an executable: | ||
| − | ** $ svn propset svn:executable somescript | + | ** $ svn propset svn:executable ON somescript |
| + | ** $ svn propdel svn:executable somescript | ||
** More details [http://svnbook.red-bean.com/en/1.1/re23.html here] | ** More details [http://svnbook.red-bean.com/en/1.1/re23.html here] | ||
Revision as of 17:20, 1 July 2010
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