From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Raeburn Newsgroups: gmane.emacs.devel Subject: Re: Watchpoints for emacs lisp. Date: Mon, 24 May 2010 10:46:36 -0400 Message-ID: <31C9EDD0-1ED1-4A5B-B925-811C120D7514@raeburn.org> References: <28512483.post@talk.nabble.com> <28523705.post@talk.nabble.com> <28567671.post@talk.nabble.com> <28574547.post@talk.nabble.com> <7FA18246-9874-4EC2-AAEB-55B693541C20@mit.edu> <28577522.post@talk.nabble.com> <28585093.post@talk.nabble.com> <28585789.post@talk.nabble.com> <28586371.post@talk.nabble.com> <28587094.post@talk.nabble.com> <28657657.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v1078) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1274712422 7268 80.91.229.12 (24 May 2010 14:47:02 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 24 May 2010 14:47:02 +0000 (UTC) Cc: Emacs-devel@gnu.org To: "alin.s" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 24 16:46:57 2010 connect(): No such file or directory 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 1OGYvf-0004pa-Sb for ged-emacs-devel@m.gmane.org; Mon, 24 May 2010 16:46:56 +0200 Original-Received: from localhost ([127.0.0.1]:58531 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGYve-0002FW-LF for ged-emacs-devel@m.gmane.org; Mon, 24 May 2010 10:46:54 -0400 Original-Received: from [140.186.70.92] (port=53380 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGYvY-0002FR-56 for Emacs-devel@gnu.org; Mon, 24 May 2010 10:46:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OGYvV-0004TE-92 for Emacs-devel@gnu.org; Mon, 24 May 2010 10:46:48 -0400 Original-Received: from splat.raeburn.org ([69.25.196.39]:41078 helo=raeburn.org) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGYvN-0004SZ-Dv for Emacs-devel@gnu.org; Mon, 24 May 2010 10:46:45 -0400 Original-Received: from squish.raeburn.org (squish.raeburn.org [10.0.0.172]) by raeburn.org (8.14.3/8.14.1) with ESMTP id o4OEkapH024137; Mon, 24 May 2010 10:46:36 -0400 (EDT) In-Reply-To: <28657657.post@talk.nabble.com> X-Mailer: Apple Mail (2.1078) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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:125176 Archived-At: On May 24, 2010, at 10:36, alin.s wrote: > Please tell me how can I revert the buffers after U modified them and = I want > to come back to trunk version. "git reset --hard" may be what you want? It'll reset the checked-out = files to match the repository, discarding your edits. Or did you just = mean M-x revert-buffer to get rid of your unsaved changes? > And how can I update to get the latest patch, that appeared from the = last > check out. "git pull", which does a "git fetch" (updates from the remote source) = and "git merge" (pulls the changes into your working branch) Ken=