From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jacob Keller Subject: [PATCH v2 1/2] notes: document cat_sort_uniq rewriteMode Date: Fri, 31 Jul 2015 16:12:20 -0700 Message-ID: <1438384341-2688-2-git-send-email-jacob.e.keller@intel.com> References: <1438384341-2688-1-git-send-email-jacob.e.keller@intel.com> Cc: Jacob Keller , Johan Herland , Michael Haggerty , Eric Sunshine To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sat Aug 01 01:12:39 2015 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZLJTi-0003sa-9J for gcvg-git-2@plane.gmane.org; Sat, 01 Aug 2015 01:12:38 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754443AbbGaXMf (ORCPT ); Fri, 31 Jul 2015 19:12:35 -0400 Received: from mga09.intel.com ([134.134.136.24]:46299 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753687AbbGaXMc (ORCPT ); Fri, 31 Jul 2015 19:12:32 -0400 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 31 Jul 2015 16:12:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,587,1432623600"; d="scan'208";a="617069087" Received: from jekeller-desk.amr.corp.intel.com ([134.134.3.85]) by orsmga003.jf.intel.com with ESMTP; 31 Jul 2015 16:12:31 -0700 X-Mailer: git-send-email 2.5.0.482.gfcd5645 In-Reply-To: <1438384341-2688-1-git-send-email-jacob.e.keller@intel.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: From: Jacob Keller Teach documentation about the cat_sort_uniq rewriteMode that got added at the same time as the equivalent merge strategy. Signed-off-by: Jacob Keller Cc: Johan Herland Cc: Michael Haggerty Cc: Eric Sunshine --- Documentation/config.txt | 4 ++-- Documentation/git-notes.txt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index 6562c6ab09b9..3c1e4df09beb 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1965,8 +1965,8 @@ notes.rewriteMode:: When copying notes during a rewrite (see the "notes.rewrite." option), determines what to do if the target commit already has a note. Must be one of - `overwrite`, `concatenate`, or `ignore`. Defaults to - `concatenate`. + `overwrite`, `concatenate`, `cat_sort_uniq`, or `ignore`. + Defaults to `concatenate`. + This setting can be overridden with the `GIT_NOTES_REWRITE_MODE` environment variable. diff --git a/Documentation/git-notes.txt b/Documentation/git-notes.txt index 851518d531b5..674682b34b83 100644 --- a/Documentation/git-notes.txt +++ b/Documentation/git-notes.txt @@ -331,7 +331,8 @@ environment variable. notes.rewriteMode:: When copying notes during a rewrite, what to do if the target commit already has a note. Must be one of `overwrite`, - `concatenate`, and `ignore`. Defaults to `concatenate`. + `concatenate`, `cat_sort_uniq`, or `ignore`. Defaults to + `concatenate`. + This setting can be overridden with the `GIT_NOTES_REWRITE_MODE` environment variable. -- 2.5.0.482.gfcd5645