Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:git:patching [2011/12/27 06:07] – created alexen:git:patching [2011/12/27 06:09] (current) – [Applying Patches] alex
Line 63: Line 63:
 </code> </code>
  
-To sign off patches as they are committed, use -s like so:+To sign off patches as they are committed, use ''-s'' like so:
  
 <code> <code>
 git am -s 0001-mypatch.patch git am -s 0001-mypatch.patch
 +</code>
 +
 +To fudge the commit date to be the same as the author date, use ''--committer-date-is-author-date'' like so::
 +
 +<code>
 +git am --committer-date-is-author-date 0001-mypatch.patch
 </code> </code>