-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathreply-to-this.html
More file actions
41 lines (39 loc) · 2.16 KB
/
reply-to-this.html
File metadata and controls
41 lines (39 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>GitGitGadget - contributing git.git patches via GitHub PRs</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="banner">
<table style="width: 100%">
<tbody>
<tr>
<td>
<img src="images/gitgitgadget-explanation.png" alt="An arrow from git logo to an envelop with git logo. The arrow is labelled by famous Inspector Gadget hat." style="height: 150px;">
</td>
<td>
<big>GitGitGadget</big>
<br />
Contributing git.git patches via GitHub PRs
<br />
<small>... one iteration at a time...</small>
</td>
</tr>
</tbody>
</table>
</div>
<div class="block">
<p>You most likely found this page because you contributed patches to the Git mailing list via GitGitGadget, and a mail from the Git mailing list was mirrored to your Pull Request, and now you need to answer.</p>
<p>The easiest method (unless you are subscribed to the Git mailing list and saw the mail already) is to import the so-called "mbox" file. You can get that by following the "On the Git mailing list" link on the top of the mirrored mail and then downloading the "raw" version (you can do the same by appending <code>/raw</code> to the link).</p>
<p>This file now needs to be imported into your regular mail program.</p>
<h2 id="how-to-import-an-mbox-file">How to import an <code>mbox</code> file</h2>
<h3 id="if-your-mail-program-stores-mails-in-maildir-format-thunderbird-mutt-alpine-etc">If your mail program stores mails in "maildir" format (Thunderbird, Mutt, Alpine, etc)</h3>
<p>Simply copy the file to the <code>new</code> subfolder in your mailer's maildir folder.</p>
<h3 id="if-you-use-webmail-gmail-and-friends">If you use webmail (GMail and friends)</h3>
<p>You can use the command-line tool <code>curl</code> (provided that your version has IMAP support):</p>
<pre><code class="language-sh">curl -g --user "<email>" --url "imaps://imap.gmail.com/INBOX" -T /path/to/raw.txt
</code></pre>
</div>
</body>
</html>