From owner-freebsd-questions@freebsd.org Sun Oct 14 00:08:54 2018 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1684D10D8A7D for ; Sun, 14 Oct 2018 00:08:54 +0000 (UTC) (envelope-from hyun@caffeinated.codes) Received: from wout1-smtp.messagingengine.com (wout1-smtp.messagingengine.com [64.147.123.24]) (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 9DD418F025 for ; Sun, 14 Oct 2018 00:08:53 +0000 (UTC) (envelope-from hyun@caffeinated.codes) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.west.internal (Postfix) with ESMTP id 29A2A732; Sat, 13 Oct 2018 20:08:46 -0400 (EDT) Received: from web6 ([10.202.2.216]) by compute7.internal (MEProxy); Sat, 13 Oct 2018 20:08:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= caffeinated.codes; h=message-id:from:to:cc:mime-version :content-transfer-encoding:content-type:in-reply-to:date:subject :references; s=fm3; bh=zP6QBAMOqCP2/q6aK3LKptu296jXcmYouxM8P0vn4 50=; b=Ku13nolKZNwy3B6EFYXJES6Jmd8WaVMNv80zZbGLAv5zlZrbplpQVJhH7 5OAw/pAkXyv86yGQSoY6JsIxdY/BvJ4L6HMdlLtUT02HDwYxtnkX9ULMTg5k+Xua +ZKKr6H7LSJQsgFfhMHNGqKHtO8aGjsjuYQAHA0uQrDgsHgpmA5RBHyl2kbOHloQ FORrIkorW3/4wMPB+fUevy7sAiGUEDd8jqbShnHUvc4WyOrwfY4PDaEO01YrniPh L2bNAKjXnGSzmALFhj1hpd9pWixRBgLAfp1x4EXFjuYlJT0iK/eTY/NdmxsHfItI 3kZoAD5MJ8QACv00wL3jU8hZSdvbw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=zP6QBAMOqCP2/q6aK3LKptu296jXcmYouxM8P0vn4 50=; b=LYIf5syHBTVcTP0By05jmW3rT5hZgAn+X8UlAXOYK25xew3nCSTL+1uO/ miYcqjLFqeazQzLAFY/+P6dNx5/z94ub4zEfgEX1Zpj028L1krnPjVWOgnBGE+dm f3xF+nd34uodpQiloodnpYZ10+6mV/rOonh4fsUwRcwWY5KoB9aGK72CB4xikxiV yrMVSz51CdOWBebgCdE5SN5jdoFVmRiKI0N2lirTCd3+qx6UeUcaHJi/Gz8/Xt/8 CX2AVsLSGsa1Sv0AzmCi1a19k1ii4WX5kOyOGk6Y6XSNYxzujdvTGLtYuCCzBIHu ShiIztIn0cMTSQ8DYmsrSn+ojZcdQ== X-ME-Sender: X-ME-Proxy: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 34C644123; Sat, 13 Oct 2018 20:08:45 -0400 (EDT) Message-Id: <1539475725.851143.1541109136.31B8B836@webmail.messagingengine.com> From: Hyun Hwang To: Ernie Luzar Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-6804a824 In-Reply-To: <5BC26C64.5090906@gmail.com> Date: Sat, 13 Oct 2018 20:08:45 -0400 Subject: Re: SVN help References: <5BC26C64.5090906@gmail.com> X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2018 00:08:54 -0000 On Saturday, October 13, 2018, 6:06 PM (UTC-0400), Ernie Luzar wrote: > Need help with command line svnlite command to download > /usr/src/tests/sys/netpfil/pf directory > > svnlite co svn://svn.freebsd.org/.....what goes here > > > Thanks in advance > _______________________________________________ > freebsd-questions@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" Hi, Try this: `svnlite checkout https://svn.freebsd.org/base/head/tests/sys/netpfil/pf LOCAL_PATH`. You will need `ca_root_nss` package (or `security/ca_root_nss` port) to suppress the certificate verification issue. -- Hyun Hwang