Changes between Version 7 and Version 8 of ReleasePractices/HotFixes


Ignore:
Timestamp:
Aug 26, 2008, 7:15:38 AM (14 years ago)
Author:
Daniel Wallin
Comment:

Wiki fomatting

Legend:

Unmodified
Added
Removed
Modified
  • ReleasePractices/HotFixes

    v7 v8  
    2323Prerequisite: The [http://en.wikipedia.org/wiki/Patch_(Unix) patch] command line utility. ''patch'' is preinstalled on Mac OS X and most Linux and Unix systems. For Windows, it may be obtained from [http://www.cygwin.com/ Cygwin].
    2424
    25 * In the table, click the link for the desired Changeset.
     25 * In the table, click the link for the desired Changeset.
    2626
    27 * On the bottom of the Changeset page, click on "Download in other formats: Unified Diff".
     27 * On the bottom of the Changeset page, click on "Download in other formats: Unified Diff".
    2828
    29 * Open a command prompt window using your operating system. Enter these two commands, replacing ''directory'' with the path to ''directory'' from the table, ''download-path'' with the path to your download directory, and ''#'' with the changeset number:
     29 * Open a command prompt window using your operating system. Enter these two commands, replacing ''directory''
     30   with the path to ''directory'' from the table, ''download-path'' with the path to your download directory,
     31   and ''#'' with the changeset number:
    3032
    31 {{{
    32      cd directory
    33      patch <download-path/changeset_r#.diff
    34 }}}
     33   {{{
     34   cd directory
     35   patch <download-path/changeset_r#.diff
     36   }}}
    3537
    3638Note the "<" before the location of the download-path. If you forget it, ''patch'' will hang waiting for console input.