From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.devel Subject: Re: What a modern collaboration toolkit looks like Date: Sun, 13 Jan 2008 22:06:15 +0200 Message-ID: <20080113200615.GA2378@kobe.laptop> References: <85wsqqnfce.fsf@lola.goethe.zz> <85bq80mgut.fsf@lola.goethe.zz> <85fxxbjjk2.fsf@lola.goethe.zz> <874pdqqkq4.fsf@workhorse.earlhome> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1200254802 27144 80.91.229.12 (13 Jan 2008 20:06:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Jan 2008 20:06:42 +0000 (UTC) Cc: Gregory Collins , emacs-devel@gnu.org To: Richard Stallman Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 13 21:07:04 2008 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.50) id 1JE96i-0008Gb-CM for ged-emacs-devel@m.gmane.org; Sun, 13 Jan 2008 21:07:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE96K-0005ml-8B for ged-emacs-devel@m.gmane.org; Sun, 13 Jan 2008 15:06:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE96H-0005ld-Bb for emacs-devel@gnu.org; Sun, 13 Jan 2008 15:06:33 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE96F-0005iK-Eg for emacs-devel@gnu.org; Sun, 13 Jan 2008 15:06:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE96E-0005iA-P3 for emacs-devel@gnu.org; Sun, 13 Jan 2008 15:06:30 -0500 Original-Received: from mx-out.forthnet.gr ([193.92.150.104] helo=mx-out-04.forthnet.gr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JE96A-0001UG-BZ; Sun, 13 Jan 2008 15:06:26 -0500 Original-Received: from mx-av-03.forthnet.gr (mx-av.forthnet.gr [193.92.150.27]) by mx-out-04.forthnet.gr (8.13.8/8.13.8) with ESMTP id m0DK6Nw4027470; Sun, 13 Jan 2008 22:06:23 +0200 Original-Received: from MX-IN-05.forthnet.gr (mx-in-05.forthnet.gr [193.92.150.32]) by mx-av-03.forthnet.gr (8.14.1/8.14.1) with ESMTP id m0DK6MuR003050; Sun, 13 Jan 2008 22:06:22 +0200 Original-Received: from kobe.laptop (ppp43-253.adsl.forthnet.gr [62.1.60.253]) by MX-IN-05.forthnet.gr (8.14.2/8.14.2) with ESMTP id m0DK6L7a004597; Sun, 13 Jan 2008 22:06:22 +0200 Authentication-Results: MX-IN-05.forthnet.gr smtp.mail=keramida@ceid.upatras.gr; spf=neutral Authentication-Results: MX-IN-05.forthnet.gr header.from=keramida@ceid.upatras.gr; sender-id=neutral Original-Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.2/8.14.2) with ESMTP id m0DK6JG4002535; Sun, 13 Jan 2008 22:06:20 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Original-Received: (from keramida@localhost) by kobe.laptop (8.14.2/8.14.2/Submit) id m0DK6F2E002534; Sun, 13 Jan 2008 22:06:15 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Content-Disposition: inline In-Reply-To: X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 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:86846 Archived-At: On 2008-01-08 14:07, Richard Stallman wrote: > The URL identifies the repository. When you do a "pull", you obtain the > _set_ of all revisions that exist on the remote but don't exist in your > local tree (remember that in a distributed context every repository has > a complete history). > > What command do you use to get "the current development version" > sources out of that local copy of the repository? The current development version is identified by either a specific URL (i.e. the unique location of an online repository st savannah) or by a specific branch in this repository. That is, the main "development version" of project $FOO may be: http://hg.savannah.gnu.org/sources/emacs/trunk or the 'main' branch in this repository. Given a local 'clone' of this branch, say in ~/work/emacs/trunk a user can get the latest development version with: cd ~/work/emacs/trunk hg pull --update ; or 'hg pull -u' This will perform both steps of (a) grabbing any changes of the remote tree that we don't have and stashing them in the local repository storage area, and (b) check out the latest version of the sources.