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 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] | ||
Latest revision as of 15:42, 12 January 2012
[edit] Links
[edit] chmod for subversion
- making a file an executable:
- svn propset svn:executable ON somescript
- svn propdel svn:executable somescript
- More details here
[edit] Creating and applying a patch:
- svn diff > ~/fix_ugly_bug.diff
- patch -p0 -i ~/fix_ugly_bug.diff
More details here