From patchwork Mon Jan 27 20:26:38 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Denton Liu X-Patchwork-Id: 11353233 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 775C214B7 for ; Mon, 27 Jan 2020 20:27:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 54DC924679 for ; Mon, 27 Jan 2020 20:27:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com header.b="SRURpBPy" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726181AbgA0U1A (ORCPT ); Mon, 27 Jan 2020 15:27:00 -0500 Received: from mail-qt1-f173.google.com ([209.85.160.173]:42751 "EHLO mail-qt1-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726083AbgA0U07 (ORCPT ); Mon, 27 Jan 2020 15:26:59 -0500 Received: by mail-qt1-f173.google.com with SMTP id j5so8454908qtq.9 for ; Mon, 27 Jan 2020 12:26:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=w8J1rrekRQBKLxC/AIo2zRv7EF2nI8ZlyVq9ML/6QvE=; b=SRURpBPyAP1JSjjihzXrTSTDKy0p0iKuwvksdgMvwULWwugB3Iy5TPG/RwLkCw7rCj jx8InfhaOn0GdMJVnKb9KEWorhQ54LJn2XrxEuYP7SlUlimROZrchE7eEEr1BbIA7gKi BDEaJuvRoH+yD8mg2qxxoFy+qOJnJGMGznXRBMHyP7kvLbL3FgCV3Ixdygx0/+eW1sSD Dps97NIhN5DkqwlT0T9wTSpSxlySlhzmreDUQGLKcTKRIan4UNuB0w8l7QuxhP/Nis2M 2Cf0rvJjXEBDI92UnRycxJSZnapUuLNdzEwuNhdWBvvpH5IOhUnehKA3F6PcEv48XQTm 7UYQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=w8J1rrekRQBKLxC/AIo2zRv7EF2nI8ZlyVq9ML/6QvE=; b=h/7p5LBLvLvJeMmAYIeUq81cIXmH3RlpE3J2mdfqyvNELUn8ZXvpBm8QfERFSTqPpf GBgqhgqGjXZjCvAneRU63Ugy9qq2YYgmZJHaQNtNher6H7xMjYvvU0J/5cSe1MYATg7P hL1G0rrd/fsaVCno9ZcrsL1/0r7/qkaAYx/N9dIREGM1h7aKEd2eeOF6B+/0lybr49FT 0nlHdl6oMeqeX9A9SYO+xnq+UJKp7Bo/z/Ghgx6IzRBSY9TblmMmvEa7tKoNdoH8lBxw bTyqiWjs6d7OTM6WHBvw3mvKcUnJ75UMvp4ftNL1pf4+6UF91sungqh9sSOj2aSe0Sk6 JCcw== X-Gm-Message-State: APjAAAXsXm1P7tHWinD05Lu8LI+ibtXruvjSOUX2GDWbwPUYvgp9gXzC 1JfxHe00CYWZKy6Ag7j9iITd6Kgb X-Google-Smtp-Source: APXvYqy994VR/2PJ4XGqfIBGTDRPFgJ92uKxKh4Thi5QsPZZhO0VEC9qndJlLV3e9rrLvVYQJG0WRA== X-Received: by 2002:ac8:2e53:: with SMTP id s19mr410000qta.354.1580156818739; Mon, 27 Jan 2020 12:26:58 -0800 (PST) Received: from archbookpro.lan ([199.249.110.29]) by smtp.gmail.com with ESMTPSA id v10sm4718650qtq.58.2020.01.27.12.26.57 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jan 2020 12:26:57 -0800 (PST) From: Denton Liu To: Git Mailing List Cc: Junio C Hamano Subject: [PATCH] .mailmap: fix erroneous authorship for Derrick Stolee Date: Mon, 27 Jan 2020 15:26:38 -0500 Message-Id: <6bcdfa906b6f1ea2296ade8c0b7eaf0c4540d681.1580156690.git.liu.denton@gmail.com> X-Mailer: git-send-email 2.25.0.rc1.180.g49a268d3eb In-Reply-To: References: MIME-Version: 1.0 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org In 4c6c7971e0 (unpack-trees: correctly compute result count, 2020-01-10), the commit author is listed as "Derrick Stolee via GitGitGadget ", however this authorship is erroneous. Fix the authorship by mapping the erroneous authorship to Derrick Stolee's canonical authorship information. Signed-off-by: Denton Liu --- Whoops, I didn't realise that the branch had already been merged into 'next'. Anyway, we can apply this mailmap patch on the tip of 'ds/sparse-cone' to fix that issue. .mailmap | 1 + 1 file changed, 1 insertion(+) diff --git a/.mailmap b/.mailmap index 14fa041043..cf3f68ecaf 100644 --- a/.mailmap +++ b/.mailmap @@ -59,6 +59,7 @@ David S. Miller David Turner David Turner Derrick Stolee +Derrick Stolee Derrick Stolee via GitGitGadget Deskin Miller Dirk Süsserott Eric Blake