From owner-freebsd-current@FreeBSD.ORG Tue Dec 27 19:31:17 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F784106567B for ; Tue, 27 Dec 2011 19:31:17 +0000 (UTC) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from mail-gw12.york.ac.uk (mail-gw12.york.ac.uk [144.32.129.162]) by mx1.freebsd.org (Postfix) with ESMTP id 2FC5E8FC19 for ; Tue, 27 Dec 2011 19:31:16 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.108.81]:43935) by mail-gw12.york.ac.uk with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1RfcXS-0002UL-W5; Tue, 27 Dec 2011 19:18:19 +0000 Received: from gavin (helo=localhost) by ury.york.ac.uk with local-esmtp (Exim 4.77) (envelope-from ) id 1RfcXS-0002WZ-Pg; Tue, 27 Dec 2011 19:18:18 +0000 Date: Tue, 27 Dec 2011 19:18:18 +0000 (GMT) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Ron McDowell In-Reply-To: <4EFA057E.4030500@fuzzwad.org> Message-ID: References: <4EF904F2.4020109@FreeBSD.org> <4EF953ED.9060905@fuzzwad.org> <4EF9B09A.4070103@freebsd.org> <4EFA057E.4030500@fuzzwad.org> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: Cc: freebsd-current Subject: Re: Removal of sysinstall from HEAD and lack of a post-install configuration tool X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 27 Dec 2011 19:31:17 -0000 On Tue, 27 Dec 2011, Ron McDowell wrote: > As a related question, is there a good primer somewhere about how to use SVN? > I'm using csup at present. - Install the subversion port - Downlaod the source. To get HEAD code: svn co svn://svn.freebsd.org/base/head/ or to get 9-stable code: svn co svn://svn.freebsd.org/base/stable/9 (If you want to check it out into a different directory, append the dir name, for example: "svn co svn://svn.freebsd.org/base/head/ src") - Make your changes :) - To get a diff of your changes, you can just use "svn diff" Gavin