From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 8C0621F506 for ; Sat, 24 Sep 2022 03:38:15 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; unprotected) header.d=pobox.com header.i=@pobox.com header.b="ZckuHBFe"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233190AbiIXDiA (ORCPT ); Fri, 23 Sep 2022 23:38:00 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55132 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233207AbiIXDhp (ORCPT ); Fri, 23 Sep 2022 23:37:45 -0400 Received: from pb-smtp21.pobox.com (pb-smtp21.pobox.com [173.228.157.53]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 04363139F4D for ; Fri, 23 Sep 2022 20:37:42 -0700 (PDT) Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 792E61B0310; Fri, 23 Sep 2022 23:37:42 -0400 (EDT) (envelope-from tmz@pobox.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=sasl; bh=aZHFdu8c9M/N9+diyN2GlG4gmUEuDq1y5CotlYE1Ebg=; b=Zcku HBFel/XEGJl11DwQkHojDth1CdzARLLTP3YLBB5URDPzDtxcW4akr7bDCzYQwTm/ SOB25p+skEbY1SWG4lvs2tswSaC6O/n+jNbPw90iICFMxV+GpUk5s/6QZR/wmiBR kXrVtYEUvISCRE4Hoa6oKVD8z4PgETCbOiIZ39I= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 744D71B030F; Fri, 23 Sep 2022 23:37:42 -0400 (EDT) (envelope-from tmz@pobox.com) Received: from morphine.teonanacatl.net (unknown [47.204.171.166]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp21.pobox.com (Postfix) with ESMTPSA id CF3801B030E; Fri, 23 Sep 2022 23:37:37 -0400 (EDT) (envelope-from tmz@pobox.com) From: Todd Zullinger To: git@vger.kernel.org Cc: Elijah Newren Subject: [filter-repo PATCH] fix links to git-fast-import Date: Fri, 23 Sep 2022 23:37:08 -0400 Message-Id: <20220924033708.2409170-1-tmz@pobox.com> X-Mailer: git-send-email 2.38.0.rc1 MIME-Version: 1.0 X-Pobox-Relay-ID: 3C577FEE-3BBA-11ED-8F5F-B31D44D1D7AA-09356542!pb-smtp21.pobox.com Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org The name of the html and man page for `git-fast-import` is missing the `git-` prefix. Add it where appropriate. Signed-off-by: Todd Zullinger --- Hi Elijah, I noticed the link to git-fast-import.html in git-filter-repo.html was missing the `git-` prefix. The man page similarly lacked it when referencing it. html/git-filter-repo.html | 2 +- man1/git-filter-repo.1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/git-filter-repo.html b/html/git-filter-repo.html index 3143fd9..5119fa2 100644 --- a/html/git-filter-repo.html +++ b/html/git-filter-repo.html @@ -2167,7 +2167,7 @@ that filter-repo uses bytestrings (see instead of strings.

There are four callbacks that allow you to o= perate directly on raw objects that contain data that’s easy to write in -fast-import(1) format:

+git-fast-import(1) format:

--blob-callback
diff --git a/man1/git-filter-repo.1 b/man1/git-filter-repo.1
index 188fd2a..9f9bbfc 100644
--- a/man1/git-filter-repo.1
+++ b/man1/git-filter-repo.1
@@ -1512,7 +1512,7 @@ def foo_callback(foo):
 .sp
 Thus, you just need to make sure your \fIBODY\fR modifies and returns \f=
Ifoo\fR appropriately\&. One important thing to note for all callbacks is=
 that filter\-repo uses bytestrings (see \m[blue]\fBhttps://docs\&.python=
\&.org/3/library/stdtypes\&.html#bytes\fR\m[]) everywhere instead of stri=
ngs\&.
 .sp
-There are four callbacks that allow you to operate directly on raw objec=
ts that contain data that\(cqs easy to write in \fBfast-import\fR(1) form=
at:
+There are four callbacks that allow you to operate directly on raw objec=
ts that contain data that\(cqs easy to write in \fBgit-fast-import\fR(1) =
format:
 .sp
 .if n \{\
 .RS 4
--=20
2.38.0.rc1