From owner-freebsd-current@freebsd.org Sat Jan 9 15:33:08 2021 Return-Path: Delivered-To: freebsd-current@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 BE4164D8C0C for ; Sat, 9 Jan 2021 15:33:08 +0000 (UTC) (envelope-from mack@macktronics.com) Received: from mail.macktronics.com (coco.macktronics.com [209.181.253.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DCkWR691tz3N22 for ; Sat, 9 Jan 2021 15:33:07 +0000 (UTC) (envelope-from mack@macktronics.com) Received: from olive.macktronics.com (unknown [209.181.253.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.macktronics.com (Postfix) with ESMTPS id EB1AE2098; Sat, 9 Jan 2021 09:32:36 -0600 (CST) Date: Sat, 9 Jan 2021 09:32:36 -0600 (CST) From: Dan Mack X-X-Sender: mack@localhost.local To: Frank Seltzer cc: freebsd-current@freebsd.org Subject: Re: src: continued use of Subversion for getting updates In-Reply-To: <20210109102356.7745a48a@Ace.nina.org> Message-ID: References: <20201222183900.GA22353@www.zefox.net> <81C07616-434E-4DF4-91AC-518AECF4F16F@gromit.dlib.vt.edu> <01b07b90-e206-aa56-aa5b-91c764ef36a4@gmail.com> <4a78a724-08d8-b9bd-1353-598b5c596078@gmail.com> <20210109102356.7745a48a@Ace.nina.org> User-Agent: Alpine 2.20 (GSO 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-Rspamd-Queue-Id: 4DCkWR691tz3N22 X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.80 / 15.00]; RCVD_TLS_ALL(0.00)[]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:209.181.253.64/29]; NEURAL_HAM_LONG(-1.00)[-1.000]; MIME_GOOD(-0.10)[text/plain]; RBL_DBL_DONT_QUERY_IPS(0.00)[209.181.253.65:from]; SPAMHAUS_ZRD(0.00)[209.181.253.65:from:127.0.2.255]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_HAM_SHORT(-1.00)[-0.999]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[macktronics.com,none]; FREEMAIL_TO(0.00)[bellsouth.net]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:209, ipnet:209.181.252.0/23, country:US]; RCVD_COUNT_TWO(0.00)[2]; MAILMAN_DEST(0.00)[freebsd-current] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2021 15:33:08 -0000 On Sat, 9 Jan 2021, Frank Seltzer wrote: > On Sat, 2 Jan 2021 23:00:35 -0700 > Warner Losh wrote: > >> That would. I'll make sure something is written up, but it should exactly >> like before. >> >> Warner > > Is there a cookbook guide to converting to git from svn for people who just > want to checkout source to buildworld and keep the ports tree up to date? I just do this assuming /usr/src is empty already: # cd /usr # git clone https://git.FreeBSD.org/src.git # cd /usr/src # git config pull.ff=only Before each build: # git pull # make -j 8 buildworld >& /root/builds/world/`git rev-parse --short HEAD` # make -j 8 buildkernel ... # reboot ... # cd /usr/src # make installworld # mergemaster -iFU /* need to start using an alt method for this */ # reboot works for me (tm) Dan