From owner-freebsd-stable@freebsd.org Wed Jan 6 14:05:14 2021 Return-Path: Delivered-To: freebsd-stable@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 5A45E4D18EA for ; Wed, 6 Jan 2021 14:05:14 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (constantine.ingresso.co.uk [31.24.6.74]) (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 mx1.freebsd.org (Postfix) with ESMTPS id 4D9rjP47WYz3qwW for ; Wed, 6 Jan 2021 14:05:12 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from [2001:470:6cc4:1:cd6:5836:ddba:7b54] (helo=balta.drayhouse.twisted.org.uk) by constantine.ingresso.co.uk with esmtpsa (TLS1.3) tls TLS_AES_128_GCM_SHA256 (Exim 4.94 (FreeBSD)) (envelope-from ) id 1kx9Qv-0008Up-3k for freebsd-stable@freebsd.org; Wed, 06 Jan 2021 14:05:05 +0000 Subject: Re: How to handle the pack files now we have switched to git? To: freebsd-stable@freebsd.org References: <22d067ae-c204-0dc5-4195-2d1c07f35560@ingresso.co.uk> <29bff715b10eabac5559742d7df88a5b@bsdforge.com> From: Pete French Message-ID: <1d0ab320-061f-e8d0-eb27-5f3cd33fbbe5@ingresso.co.uk> Date: Wed, 6 Jan 2021 14:05:04 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <29bff715b10eabac5559742d7df88a5b@bsdforge.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4D9rjP47WYz3qwW X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=pass (policy=none) header.from=ingresso.co.uk; spf=pass (mx1.freebsd.org: domain of petefrench@ingresso.co.uk designates 31.24.6.74 as permitted sender) smtp.mailfrom=petefrench@ingresso.co.uk X-Spamd-Result: default: False [-2.71 / 15.00]; RCVD_TLS_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; RBL_DBL_DONT_QUERY_IPS(0.00)[31.24.6.74:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:31.24.6.74]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; SPAMHAUS_ZRD(0.00)[31.24.6.74:from:127.0.2.255]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[ingresso.co.uk,none]; NEURAL_HAM_SHORT(-0.91)[-0.906]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:16082, ipnet:31.24.0.0/21, country:GB]; SUBJECT_ENDS_QUESTION(1.00)[]; MAILMAN_DEST(0.00)[freebsd-stable]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2021 14:05:14 -0000 On 05/01/2021 15:58, Chris wrote: > Brilliant minds think alike. I use nearly the same routine. ;-) Always good to know that I am not doing something completely idiotic ;) > OTOH it won't be (easily) possible to "up" the repo(s) from the > receiving hosts w/o the .git. Yes, this is my issue really. Because though I liek to think I have one place which builds the system and rsyncs it out, in practice here are three of them, and each of them can push to the otjers. Which one I use rather depoends where I am, and what I am doing - which is a problem which has become more acute in the current world! What I have decided to do is keep the.git on all fo them, but not rsycn it, and to 'git pull' at the same time in each place - a 'it status' will show me if any files are actually different after the rsync. Should work fine I think. thanks, -pete.