From owner-freebsd-questions@freebsd.org Fri Dec 25 07:14:56 2020 Return-Path: Delivered-To: freebsd-questions@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 C81234B8F6E for ; Fri, 25 Dec 2020 07:14:56 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from p-impout005.msg.pkvw.co.charter.net (p-impout005aa.msg.pkvw.co.charter.net [47.43.26.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D2J9W616Wz4cxs for ; Fri, 25 Dec 2020 07:14:55 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from localhost ([96.28.177.163]) by cmsmtp with ESMTP id shCMkgk8OPPdNshCMkVwf2; Fri, 25 Dec 2020 07:07:38 +0000 X-Authority-Analysis: v=2.3 cv=aOqOVo1m c=1 sm=1 tr=0 a=xqrt2BZAGHte7XHhrxJgbA==:117 a=xqrt2BZAGHte7XHhrxJgbA==:17 a=HpEJnUlJZJkA:10 a=DBwwDor5xuMA:10 a=pGLkceISAAAA:8 a=s1G7sxBSAAAA:20 a=6I5d2MoRAAAA:8 a=1wJiJw1P5DZcvHu4zkkA:9 a=IjZwj45LgO3ly-622nXo:22 a=pHzHmUro8NiASowvMSCR:22 a=xoEH_sTeL_Rfw54TyV31:22 From: "Thomas Mueller" To: freebsd-questions@freebsd.org Subject: Re: Where can I find the new git repository? References: X-CMAE-Envelope: MS4wfKwioS4AnUNK6/pF3cft5uz2Bjmm78KUi5i+OlfBtrYscO6JPkejWQx0WVFH6jmaIF16z9iVVTDBAX4N4cvJ05OT/OFi/fPphQ+Mhq9jbYdGcvjCRlXh G4QPd69CBwTp3fLnH9zlgqJoHXa1CUC2bI9bdERXkDrf8zl4esosXQsqIs273GGgsb8gcj3QWPFhhw== X-Rspamd-Queue-Id: 4D2J9W616Wz4cxs X-Spamd-Bar: +++++ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of mueller6722@twc.com designates 47.43.26.136 as permitted sender) smtp.mailfrom=mueller6722@twc.com X-Spamd-Result: default: False [5.84 / 15.00]; FREEMAIL_FROM(0.00)[twc.com]; MISSING_DATE(1.00)[]; TO_DN_NONE(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:47.43.26.0/24]; NEURAL_HAM_SHORT(-0.36)[-0.363]; RECEIVED_SPAMHAUS_PBL(0.00)[96.28.177.163:received]; SUBJECT_ENDS_QUESTION(1.00)[]; R_DKIM_NA(0.00)[]; FREEMAIL_ENVFROM(0.00)[twc.com]; ASN(0.00)[asn:40294, ipnet:47.43.24.0/21, country:US]; RBL_DBL_DONT_QUERY_IPS(0.00)[47.43.26.136:from]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[twc.com]; NEURAL_SPAM_MEDIUM(1.00)[1.000]; RCPT_COUNT_ONE(0.00)[1]; SPAMHAUS_ZRD(0.00)[47.43.26.136:from:127.0.2.255]; MISSING_MID(2.50)[]; NEURAL_SPAM_LONG(1.00)[1.000]; RCVD_TLS_LAST(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; GREYLIST(0.00)[pass,body]; MAILMAN_DEST(0.00)[freebsd-questions] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Fri, 25 Dec 2020 07:14:56 -0000 X-List-Received-Date: Fri, 25 Dec 2020 07:14:56 -0000 from Vasily Postnicov Date: Fri, 25 Dec 2020 09:39:21 +0300 > I used to get FreeBSD's source code from github mirror at > github.com/freebsd/freebsd. After FreeBSD has switched from SVN to git, > that mirror is no longer updated (the last commit is 5 days old now). How > can I clone the new repo? > Tried git clone git://cgit.freebsd.org/src or git clone > https://cgit.freebsd.org/src without success. You were close: git clone https://git.freebsd.org/doc.git git clone https://git.freebsd.org/src.git You may have to set GIT_SSL_CAINFO if your certificates are not visible to git: I had to do that in NetBSD but not FreeBSD. Tom