diff options
author | Bradley Taunt <bt@btxx.org> | 2024-06-10 10:12:28 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-06-10 10:12:28 -0400 |
commit | 14074019d62d98885c4c764401a9e7e1fd129f79 (patch) | |
tree | c688b288de21b5c475fa2e512be8a8418b9ba8e6 /build/posts/mail | |
parent | 80eefc47a0982703e48eb9b1cf4e5180f945ef10 (diff) |
Set proper timestamps for header and footer HTML templates, update some post contents
Diffstat (limited to 'build/posts/mail')
-rw-r--r-- | build/posts/mail/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/posts/mail/index.html b/build/posts/mail/index.html index a98acc5..afc87bc 100644 --- a/build/posts/mail/index.html +++ b/build/posts/mail/index.html @@ -24,9 +24,13 @@ <p>I recently covered how to <a href="/git-patches">work with git email patches in Evolution on Linux</a>, so I thought it would make sense to walk through a similar workflow for those using Apple Mail on MacOS. The idea is essentially the same, with just a little extra work involved.</p> <h2 id="create-a-patches-mailbox">Create a “Patches” Mailbox</h2> <p>The first thing you’ll need to do is make a new <code>Patches</code> mailbox folder inside your existing mail account. Once done, your default Mail sidebar should look similar to the following:</p> +<p><img src="/public/images/apple-mail-1.png" alt="The Apple Mail sidebar with the Patches folder present" /></p> +<p><em>The Apple Mail sidebar with the “Patches” folder present</em></p> <h2 id="applying-patches">Applying Patches</h2> <p>Now navigate to the email message containing a <code>git</code> patch. Right-click and select <em>Move to</em> > <em>Patches</em>. Now in the sidebar, right-click your <em>Patches</em> folder and select <em>Export Mailbox…</em>. You’ll be prompted to save this folder locally. I suggest having a top-level folder named <strong>Patches</strong> to make things consistent.</p> <p>Inside this folder you should see something similar to the following structure:</p> +<p><img src="/public/images/apple-mail-2.png" alt="The contents of the saved Patches mailbox folder" /></p> +<p><em>The contents of the saved Patches mailbox folder</em></p> <p>Once saved, open your terminal, navigate to the project you wish to apply this new patch to:</p> <pre><code>cd my-path/very-cool-project </code></pre> |