From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-catalyst+bounces-2608-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 52C76198005
	for <garchives@archives.gentoo.org>; Wed, 27 Feb 2013 12:13:06 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A0095E084E;
	Wed, 27 Feb 2013 12:13:04 +0000 (UTC)
Received: from vms173013pub.verizon.net (vms173013pub.verizon.net [206.46.173.13])
	by pigeon.gentoo.org (Postfix) with ESMTP id 28040E084E
	for <gentoo-catalyst@lists.gentoo.org>; Wed, 27 Feb 2013 12:13:04 +0000 (UTC)
Received: from odin.tremily.us ([unknown] [72.68.84.219])
 by vms173013.mailsrvcs.net
 (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009))
 with ESMTPA id <0MIV001ASOL86420@vms173013.mailsrvcs.net> for
 gentoo-catalyst@lists.gentoo.org; Wed, 27 Feb 2013 06:12:45 -0600 (CST)
Received: by odin.tremily.us (Postfix, from userid 1000)	id 6F2BA8C74E4; Wed,
 27 Feb 2013 07:12:44 -0500 (EST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin;
	t=1361967164; bh=gKbSqsQLgHII5P3Dhs239cMuHA3HGWRyRDG+xfm6bEM=;
	h=Date:From:To:Subject:References:In-Reply-To;
	b=ipliF7tpQJdt0PlubF8XzCWMXtEUIrMFbcZj9PBFec0Vn9Odq2hYoQB2sGcHHi6wm
 uDyA6IO2TlR/u88JGH3cmJM+gagfnGxsjh6H16vXbLRRp6nARfHoVOYBM89b5yqN1s
 9a3ON+AxQcHV5VJHIQZUULcjHSpswAI9EP5LFpu8=
Date: Wed, 27 Feb 2013 07:12:44 -0500
From: "W. Trevor King" <wking@tremily.us>
To: gentoo-catalyst@lists.gentoo.org
Subject: Re: [gentoo-catalyst] patch, fix broken seed stage update
Message-id: <20130227121244.GA28349@odin.tremily.us>
References: <1361895645.3997.269.camel@big_daddy.dol-sen.ca>
 <512CF0E4.70000@gentoo.org>
 <CAEdQ38FaYTpp87OcGEzg5br34Qd5JN9d1jLFeT7CtpPTQOhezA@mail.gmail.com>
 <1361930694.3997.297.camel@big_daddy.dol-sen.ca>
Precedence: bulk
List-Post: <mailto:gentoo-catalyst@lists.gentoo.org>
List-Help: <mailto:gentoo-catalyst+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-catalyst+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-catalyst+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-catalyst.gentoo.org>
X-BeenThere: gentoo-catalyst@lists.gentoo.org
Reply-to: gentoo-catalyst@lists.gentoo.org
MIME-version: 1.0
Content-type: multipart/signed; micalg=pgp-sha1;
 protocol="application/pgp-signature"; boundary=qDbXVdCdHGoSgWSk
Content-disposition: inline
In-reply-to: <1361930694.3997.297.camel@big_daddy.dol-sen.ca>
OpenPGP: id=39A2F3FA2AB17E5D8764F388FC29BDCDF15F5BE8;
 url=http://tremily.us/pubkey.txt
User-Agent: Mutt/1.5.21 (2010-09-15)
X-Archives-Salt: 6cdd782d-57bb-454a-bffa-97cdbc87a9cd
X-Archives-Hash: 12520d68323ffd9f50d15f199b8cf0c4


--qDbXVdCdHGoSgWSk
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Tue, Feb 26, 2013 at 06:04:54PM -0800, Brian Dolbec wrote:
> I tried using git to send this patch, but it did not work.  I'll look
> into how to make it work with email.
> =E2=80=A6
> I will continue to spam the list with all my rebased commits, which I
> intended to do when I had more time.  I sent this one off this morning
> before I went to work.  I know Jorge was interested in the changes.  I'm
> back now, so will manually prepare more patch mails.

It looks like you're pasting diffs into your email client, which makes
it harder for others to apply them with `git am`.  When I'm submitting
patches via email, I usually do something like:

  $ git format-patch --cover-letter -v3 -o my-fix $(git merge-base my-fix m=
aster)
  $ emacs my-fix/v3-0000-cover-letter.patch
    =E2=80=A6 fill in subject and summarize changes since v2 =E2=80=A6
  $ git send-email --to gentoo-catalyst@lists.gentoo.org \
      --in-reply-to '<message-id-for-v2@me.invalid>' my-fix/v3-*

Where `my-fix` is the name of my feature branch.  The `-v3` option
requires Git =E2=89=A51.8.2 for -v/--reroll-count, before that you had to u=
se
something like `--subject-prefix 'PATCH v3'` [1].

By default, `send-email` will try and send the emails with `sendmail`.
If you don't have a working version of sendmail installed, you can
configure it to use SMTP instead [2,3].

By using the format-patch/send-email pair, you avoid copy/paste errors
and tedium.  You also have author information and commit messages
preserved in a form that `git am` understands.  Wins for everybody ;).

Cheers,
Trevor

[1]: http://kernel.org/pub/software/scm/git/docs/git-format-patch.html
[2]: http://kernel.org/pub/software/scm/git/docs/git-send-email.html
[3]: http://kernel.org/pub/software/scm/git/docs/git-config.html

--=20
This email may be signed or encrypted with GnuPG (http://www.gnupg.org).
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy

--qDbXVdCdHGoSgWSk
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.19 (GNU/Linux)

iQIcBAEBAgAGBQJRLfg4AAoJEEUbTsx0l5OMBgAP/jQxGv39wPwomGLJk5Zr0nV5
rdkihR+NoXdx0ehfhhAImpTKhMFaf82zg7XuyHbOYfBSnka4qBsPHKUCtgtWPcZb
bUu+M/b55BXfVbkuXDZGcOg7U1w0/MZsEQKtKb7eJf9t+1EUCldXazjcY9DqN3eg
mRmvKb+s94DlCCMyTBfIWl4Ywf6CdC//deixAfwwrQcvYKvGksmNDM6Urr4Orl5X
pyc2fOc69jyibcYvIxgwAtAgmoDUoBF0qoXEYd9cVKYquXU6+U3f4v74CFxoRj2e
jiiSmulFPfImRKnX+2K8XiwIlwI6/aW7kfD7zirxV0tAP9xosBOvXb/sujnaFM0Z
B+tY3XEY6gZjtozg9DzCLjhbs5d2vSy9tYPbUMS5udFyKr6YUkXDSgDI4G2XrtUo
rqbYgtGz3hmHHVI0BNW6vPEUVk3WLiTnmGZNQmWvfd2b5LEyvF5KDfYp+cZPdQKi
vvHxLgOwAoL9tPO5sw3zy0+1Dzb7JDM7FuJ2NCnV2WM6wUH14daHpek9IgDj8ymD
egD1F8UnZef86uQ7o0E0USPv/5iodGw92qTt8QS75Im0UNV9FaHdXDjGcJGeV7rc
XPeDSDlvX1dzZ8kRudzoEKzrgBRyJ/HhScOJmCA4ZJl4CHHObQYZGcKI6I5diPXi
Dq+GnCsPFVMJrNc/iJ6G
=Zn8Q
-----END PGP SIGNATURE-----

--qDbXVdCdHGoSgWSk--