From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?=C3=93scar_Fuentes?= Newsgroups: gmane.emacs.devel Subject: Re: What is emacs architecture ? Date: Mon, 19 Jul 2010 16:43:29 +0200 Message-ID: <87r5iz4jn2.fsf@telefonica.net> References: <20100707.150746.549331509773933118.yamato@redhat.com> <87aaq3qpo7.fsf@kslab.red-bean.com> <8739vvxkqr.fsf@escher.home> <8739vvoyak.fsf@kslab.red-bean.com> <87tyoas9o4.fsf@ambire.localdomain> <87iq4p6fj2.fsf@kslab.red-bean.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1279550633 27925 80.91.229.12 (19 Jul 2010 14:43:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 19 Jul 2010 14:43:53 +0000 (UTC) Cc: Fren Zeee To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 19 16:43:51 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OarZM-000699-1M for ged-emacs-devel@m.gmane.org; Mon, 19 Jul 2010 16:43:48 +0200 Original-Received: from localhost ([127.0.0.1]:51235 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OarZL-0005rt-Cy for ged-emacs-devel@m.gmane.org; Mon, 19 Jul 2010 10:43:47 -0400 Original-Received: from [140.186.70.92] (port=42072 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OarZD-0005ro-Jk for emacs-devel@gnu.org; Mon, 19 Jul 2010 10:43:40 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OarZC-0000ux-3Y for emacs-devel@gnu.org; Mon, 19 Jul 2010 10:43:39 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:42975) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OarZB-0000ur-S7 for emacs-devel@gnu.org; Mon, 19 Jul 2010 10:43:38 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OarZA-00063e-Q4 for emacs-devel@gnu.org; Mon, 19 Jul 2010 16:43:36 +0200 Original-Received: from 83.42.13.171 ([83.42.13.171]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Jul 2010 16:43:36 +0200 Original-Received: from ofv by 83.42.13.171 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Jul 2010 16:43:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 31 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 83.42.13.171 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:i3ih/h2/7XMs8bGJ6ouPZKCEcHs= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:127579 Archived-At: Fren Zeee writes: > On Thu, Jul 8, 2010 at 10:37 AM, Karl Fogel wrote: >> And for getting the latest sources, see >> >>  http://www.emacswiki.org/emacs/BzrForEmacsDevs >> > > The site uses Bazaar which is similar to CVS, but I have forgotten > CVS. I just want to know some starter CVS commands so that I can > quickly checkout source at any stage of freeze in the past. > > Can you please give this newbie, a bunch of one liner CVS/Bzr commands > and state/explain what they do ? For getting the sources, the only thing you need is: 1. Install a recent version of bzr. Anything from version 2.0 is ok. If you are using a recent GNU/Linux distribution it is very likely that you can install it as any other application. If you are using Windows or an old GNU/Linux distribution download bzr from: http://bazaar.canonical.com 2. Once bzr is installed, execute this command from the command line: bzr clone http://bzr.savannah.gnu.org/r/emacs/trunk/ emacs Now, you have Emacs' sources on the "emacs" subdirectory. [snip]