Difference between revisions of "Subversion"
From Healthcare Robotics Wiki
Advaitjain (Talk | contribs) (Created page with '===Creating and applying a patch:=== * svn diff > ~/fix_ugly_bug.diff * patch -p0 -i ~/fix_ugly_bug.diff I got these instructions from [http://ariejan.net/2007/07/03/how-to-creat…') |
Advaitjain (Talk | contribs) (→Creating and applying a patch:) |
||
| Line 2: | Line 2: | ||
* svn diff > ~/fix_ugly_bug.diff | * svn diff > ~/fix_ugly_bug.diff | ||
* patch -p0 -i ~/fix_ugly_bug.diff | * patch -p0 -i ~/fix_ugly_bug.diff | ||
| − | + | Advait got these instructions from [http://ariejan.net/2007/07/03/how-to-create-and-apply-a-patch-with-subversion/] | |
Revision as of 23:52, 27 June 2010
Creating and applying a patch:
- svn diff > ~/fix_ugly_bug.diff
- patch -p0 -i ~/fix_ugly_bug.diff
Advait got these instructions from [1]