Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 14D32429E26 for ; Wed, 15 Jun 2011 10:00:44 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.01 X-Spam-Level: X-Spam-Status: No, score=0.01 tagged_above=-999 required=5 tests=[T_MIME_NO_TEXT=0.01] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 744yHln+YDcH for ; Wed, 15 Jun 2011 10:00:43 -0700 (PDT) Received: from arlo.cworth.org (arlo.cworth.org [50.43.72.2]) by olra.theworths.org (Postfix) with ESMTP id 7A208431FB6 for ; Wed, 15 Jun 2011 10:00:43 -0700 (PDT) Received: from yoom.home.cworth.org (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 3DF7F29A4E5; Wed, 15 Jun 2011 10:00:42 -0700 (PDT) Received: by yoom.home.cworth.org (Postfix, from userid 1000) id 2C44C254154; Wed, 15 Jun 2011 10:00:42 -0700 (PDT) From: Carl Worth To: Dmitry Kurochkin , notmuch@notmuchmail.org Subject: Re: [PATCH 3/5] Fix hiding a message while some citations are shown in notmuch-show view. In-Reply-To: <8739jbqiid.fsf@gmail.com> References: <1306361416-5019-1-git-send-email-dmitry.kurochkin@gmail.com> <1306361416-5019-4-git-send-email-dmitry.kurochkin@gmail.com> <87oc2qa07g.fsf@yoom.home.cworth.org> <87k4depfyj.fsf@gmail.com> <87lixu9z5b.fsf@yoom.home.cworth.org> <87hb8ipeb0.fsf@gmail.com> <87ipsy9sue.fsf@yoom.home.cworth.org> <87d3j5pxk5.fsf@gmail.com> <87k4ddcfnx.fsf@yoom.home.cworth.org> <877h9dp29t.fsf@gmail.com> <87sjrbkx3j.fsf@yoom.home.cworth.org> <8739jbqiid.fsf@gmail.com> User-Agent: Notmuch/0.5 (http://notmuchmail.org) Emacs/23.3.1 (i486-pc-linux-gnu) Date: Wed, 15 Jun 2011 10:00:36 -0700 Message-ID: <87fwnbf2rv.fsf@yoom.home.cworth.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2011 17:00:44 -0000 --=-=-= Content-Transfer-Encoding: quoted-printable On Wed, 15 Jun 2011 18:25:14 +0400, Dmitry Kurochkin wrote: > I know you prefer tests to go before patches and I agree with that. Great! > But most of the time I do tests after coding. Yes, I do that order almost exclusively as well. > I do not know an easy way to reorder patches in git. (Also I do not > know how to amend an old patch Fortunately, git has a great feature here for both use cases, (git rebase -i). Here's the simple recipe: * Find a bug, fix a bug, commit * Write a test case, commit * Run the following command: git rebase -i origin/master At this point you'll be presented with an editor window giving one line for each commit that you have made since origin/master. You can reorder these lines however you'd like. When you save and exit the editor, the commits will be applied in the order you saved. If there are any conflicts due to the re-ordering, then git rebase will stop and tell you what to do, which will be: * Resolve the conflict * Run "git add" on the files you edited * Run "git rebase --continue" Also, back when editing the original list of commits, you can change the word "apply" next to any particular commit to change what happens when applying it. If you change that to "reword" you'll be given an editor window to edit the commit message. If you use "edit" then you'll be dropped to a shell where you can: * Edit the code * Test as necessary * Run "git commit --amend" * Run "git rebase --continue" I absolutely love "git rebase -i". It's one of my favorite user-interface features in git. > wish more darcs features in git. I don't know about "git rebase -i", but I think I heard that "git add =2Di", (interactively add some portions of the dirty working tree to the index to be committed). I think the menu-based interface of "git add -i" is particularly clunky. But I love the trimmed-down interface of "git add -p" which simply prompts one-patch-hunk-at-a-time for pieces to add to the next commit. It even supports splitting a hunk, (or even manually editing the patch to trim it down!). It's pretty slick stuff. So there are some git tips that might be useful. > Thanks. You're quite welcome. Thanks for all the great work. Please keep it up! =2DCarl =2D-=20 carl.d.worth@intel.com --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAk345TQACgkQ6JDdNq8qSWhO7QCgnJVRdO2iv7nZMLfnmR27Dz46 kuIAoIjCapdf9E9P1fpNmCDqWCtx3MIv =CDbc -----END PGP SIGNATURE----- --=-=-=--