all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How to update Emacs git?
@ 2015-02-28 16:20 Rodolfo Medina
  2015-02-28 16:20 ` Andrey Lisin
  0 siblings, 1 reply; 4+ messages in thread
From: Rodolfo Medina @ 2015-02-28 16:20 UTC (permalink / raw
  To: help-gnu-emacs

Hi all.

I downloaded and installed Emacs git with:

 $ git clone git://git.savannah.gnu.org/emacs.git
 $ cd emacs
 $ ./autogen.sh
 $ ./configure
 $ make
 # make install

.  Now, suppose I want to simply update it without downloading it all again.
What shall I do?

Thanks for any help,

Rodolfo




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to update Emacs git?
  2015-02-28 16:20 How to update Emacs git? Rodolfo Medina
@ 2015-02-28 16:20 ` Andrey Lisin
  2015-02-28 16:39   ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Andrey Lisin @ 2015-02-28 16:20 UTC (permalink / raw
  To: Rodolfo Medina; +Cc: help-gnu-emacs

Hi,

probably, something like this will do what you want:

 $ cd emacs
 $ git pull
 $ ./autogen.sh
 $ ./configure
 $ make
 $ make install

`git pull' command will download only the changes, not whole repository.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to update Emacs git?
  2015-02-28 16:20 ` Andrey Lisin
@ 2015-02-28 16:39   ` Eli Zaretskii
  2015-02-28 16:45     ` Andrey Lisin
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2015-02-28 16:39 UTC (permalink / raw
  To: help-gnu-emacs

> From: Andrey Lisin <andrey.lisin@gmail.com>
> Date: Sat, 28 Feb 2015 22:20:18 +0600
> Cc: help-gnu-emacs@gnu.org
> 
>  $ cd emacs
>  $ git pull
>  $ ./autogen.sh  <<<<<<<<<<<<<<<<<<<<<
>  $ ./configure   <<<<<<<<<<<<<<<<<<<<<
>  $ make
>  $ make install

The 2 marked commands are not really necessary, except after the
initial clone.  After that, just "make" will do (it will regenerate
the configure script and run it with the same arguments automatically,
if needed).



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to update Emacs git?
  2015-02-28 16:39   ` Eli Zaretskii
@ 2015-02-28 16:45     ` Andrey Lisin
  0 siblings, 0 replies; 4+ messages in thread
From: Andrey Lisin @ 2015-02-28 16:45 UTC (permalink / raw
  To: Eli Zaretskii; +Cc: help-gnu-emacs

Good point! Thank you for this note.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-02-28 16:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-28 16:20 How to update Emacs git? Rodolfo Medina
2015-02-28 16:20 ` Andrey Lisin
2015-02-28 16:39   ` Eli Zaretskii
2015-02-28 16:45     ` Andrey Lisin

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.