Differences
This shows you the differences between two versions of the page.
en:git:patching [2011/12/27 07:07] alex created |
en:git:patching [2011/12/27 07:09] (current) alex [Applying Patches] |
||
---|---|---|---|
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> | ||