Create and Apply Git Patches: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Git Concepts * <tt>git format-patch</tt> =Overview= <code>git format-patch</code> exports the content of each commit into a "patch" that can then be applied with <code>git am</code> or <code>git apply</code>.")
 
Line 3: Line 3:
* <tt>[[git format-patch]]</tt>
* <tt>[[git format-patch]]</tt>
=Overview=
=Overview=
<code>git format-patch</code> exports the content of each commit into a "patch" that can then be applied with <code>[[git am]]</code> or <code>[[git apply]]</code>.
 
Patches can be created with <code>[[git format-patch]]</code> and applied with <code>[[git am]]</code> or <code>[[git apply]]</code>.

Revision as of 21:47, 16 January 2024

Internal

Overview

Patches can be created with git format-patch and applied with git am or git apply.