From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johan Herland Subject: [PATCH 0/2] Add "-m" and "-F" options to "git notes edit" Date: Tue, 21 Apr 2009 02:39:21 +0200 Message-ID: <200904210239.21974.johan@herland.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7BIT Cc: git@vger.kernel.org, Johannes Schindelin To: Junio C Hamano X-From: git-owner@vger.kernel.org Tue Apr 21 02:41:53 2009 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1Lw43b-0002US-Lz for gcvg-git-2@gmane.org; Tue, 21 Apr 2009 02:41:52 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756047AbZDUAj0 (ORCPT ); Mon, 20 Apr 2009 20:39:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752399AbZDUAjZ (ORCPT ); Mon, 20 Apr 2009 20:39:25 -0400 Received: from mx.getmail.no ([84.208.15.66]:39591 "EHLO get-mta-out02.get.basefarm.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751703AbZDUAjY (ORCPT ); Mon, 20 Apr 2009 20:39:24 -0400 Content-disposition: inline Received: from mx.getmail.no ([10.5.16.4]) by get-mta-out02.get.basefarm.net (Sun Java(tm) System Messaging Server 7.0-0.04 64bit (built Jun 20 2008)) with ESMTP id <0KIF00ERBDTM7V20@get-mta-out02.get.basefarm.net> for git@vger.kernel.org; Tue, 21 Apr 2009 02:39:23 +0200 (MEST) Received: from alpha.localnet ([84.215.102.95]) by get-mta-in02.get.basefarm.net (Sun Java(tm) System Messaging Server 7.0-0.04 64bit (built Jun 20 2008)) with ESMTP id <0KIF00MZ3DTMZVB0@get-mta-in02.get.basefarm.net> for git@vger.kernel.org; Tue, 21 Apr 2009 02:39:22 +0200 (MEST) X-PMX-Version: 5.5.3.366731, Antispam-Engine: 2.7.0.366912, Antispam-Data: 2009.4.21.2822 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Hi, The following 2-patch series teaches "git notes edit" to support the "-m " and "-F " options (inspired by git-tag and git-commit). The first patch does some minor bugfixes and cleanups in preparation for the second patch, which adds the options with associated documentation and selftests. This series is based on top of the "js/notes" topic in a recent "pu". Johan Herland (2): Minor cleanup and bugfixing in git-notes.sh Teach "-m " and "-F " to "git notes edit" Documentation/git-notes.txt | 12 +++++++- git-notes.sh | 71 ++++++++++++++++++++++++++++++++---------- t/t3301-notes.sh | 57 ++++++++++++++++++++++++++++++++++ 3 files changed, 122 insertions(+), 18 deletions(-) Have fun! :) ...Johan