From owner-dev-commits-doc-all@freebsd.org Wed Apr 21 08:10:59 2021 Return-Path: Delivered-To: dev-commits-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C06F45FC0A8 for ; Wed, 21 Apr 2021 08:10:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FQCtC4z8Sz4n1r; Wed, 21 Apr 2021 08:10:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9D95822C13; Wed, 21 Apr 2021 08:10:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13L8AxKA042552; Wed, 21 Apr 2021 08:10:59 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13L8Axkt042551; Wed, 21 Apr 2021 08:10:59 GMT (envelope-from git) Date: Wed, 21 Apr 2021 08:10:59 GMT Message-Id: <202104210810.13L8Axkt042551@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: Ka Ho Ng Subject: git: 0a0df62229 - main - books/porters-handbook: Fix git server link MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: khng X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 0a0df62229478edf7dd4f6bca75b38e143f2bb19 Auto-Submitted: auto-generated X-BeenThere: dev-commits-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the doc repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Apr 2021 08:10:59 -0000 The branch main has been updated by khng (src committer): URL: https://cgit.FreeBSD.org/doc/commit/?id=0a0df62229478edf7dd4f6bca75b38e143f2bb19 commit 0a0df62229478edf7dd4f6bca75b38e143f2bb19 Author: Ka Ho Ng AuthorDate: 2021-04-21 08:10:36 +0000 Commit: Ka Ho Ng CommitDate: 2021-04-21 08:10:36 +0000 books/porters-handbook: Fix git server link https://git.FreeBSD.org is the correct URL to our git public server. Reported by: Hung-Yi Chen Reviewed by: delphij Approved by: lwhsu Differential Revision: https://reviews.freebsd.org/D29879 --- documentation/content/en/books/porters-handbook/upgrading/_index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/content/en/books/porters-handbook/upgrading/_index.adoc b/documentation/content/en/books/porters-handbook/upgrading/_index.adoc index dc01bd897b..1b383ebfa0 100644 --- a/documentation/content/en/books/porters-handbook/upgrading/_index.adoc +++ b/documentation/content/en/books/porters-handbook/upgrading/_index.adoc @@ -88,13 +88,13 @@ When possible, please submit a man:git[1] diff. They are easier to handle than d [source,shell] .... % cd ~/my_ports_wrkdir <.> -% git clone https://cgit.FreeBSD.org/ports.git <.> +% git clone https://git.FreeBSD.org/ports.git <.> % cd ~/my_wrkdir/dns/pdnsd .... <.> This can be anywhere, of course. Building ports is not limited to within [.filename]#/usr/ports/#. -<.> https://cgit.FreeBSD.org/[cgit.FreeBSD.org] is the FreeBSD public Git server. See link:{handbook}#svn-mirrors[Subversion mirror sites] for more information. +<.> https://git.FreeBSD.org/[git.FreeBSD.org] is the FreeBSD public Git server. See link:{handbook}#svn-mirrors[Subversion mirror sites] for more information. While in the port directory, make any changes that are needed. If adding, moving, or removing a file, use `git` to track these changes: