Actions

Difference between revisions of "Patch (utility)"

From Sonic Retro

(Download links.)
(More stuff.)
Line 1: Line 1:
 
{{stub}}
 
{{stub}}
'''patch''' is a utility used to apply source code patches to a source code tree.
+
'''patch''' is a utility used to apply source code patches to a source code tree. Source code patches are commonly used to distribute code changes to developers working on an open-source project.
 +
 
 +
The '''diff''' utility is used to create patches, which can then be applied by '''patch'''.
  
 
== Downloads ==
 
== Downloads ==
 
* GNU patch: http://www.gnu.org/software/patch/
 
* GNU patch: http://www.gnu.org/software/patch/
 
* GNU patch (Win32): http://gnuwin32.sourceforge.net/packages/patch.htm
 
* GNU patch (Win32): http://gnuwin32.sourceforge.net/packages/patch.htm
 +
* GNU diffutils: http://www.gnu.org/software/diffutils/
 +
* GNU diffutils (Win32): http://gnuwin32.sourceforge.net/packages/diffutils.htm

Revision as of 16:11, 23 February 2009

Sonicretro-round.svg This short article is in need of work. You can help Sonic Retro by adding to it.

patch is a utility used to apply source code patches to a source code tree. Source code patches are commonly used to distribute code changes to developers working on an open-source project.

The diff utility is used to create patches, which can then be applied by patch.

Downloads