* cvs emacs
@ 2005-10-09 19:18 Sean Sieger
2005-10-09 20:03 ` Bill Wohler
2005-10-09 21:49 ` Peter Dyballa
0 siblings, 2 replies; 7+ messages in thread
From: Sean Sieger @ 2005-10-09 19:18 UTC (permalink / raw)
How do I check out the current Emacs module? let alone
determine it in the first place?
--
Sean Sieger
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
2005-10-09 19:18 cvs emacs Sean Sieger
@ 2005-10-09 20:03 ` Bill Wohler
2005-10-09 23:27 ` Sean Sieger
2005-10-09 21:49 ` Peter Dyballa
1 sibling, 1 reply; 7+ messages in thread
From: Bill Wohler @ 2005-10-09 20:03 UTC (permalink / raw)
Sean Sieger <sean.sieger@gmail.com> writes:
> How do I check out the current Emacs module? let alone
> determine it in the first place?
Please read:
http://savannah.gnu.org/cvs/?group=emacs
--
Bill Wohler <wohler@newt.com> http://www.newt.com/wohler/ GnuPG ID:610BD9AD
Maintainer of comp.mail.mh FAQ and MH-E. Vote Libertarian!
If you're passed on the right, you're in the wrong lane.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
[not found] <mailman.10569.1128885570.20277.help-gnu-emacs@gnu.org>
@ 2005-10-09 20:14 ` Jens Kubieziel
0 siblings, 0 replies; 7+ messages in thread
From: Jens Kubieziel @ 2005-10-09 20:14 UTC (permalink / raw)
* Sean Sieger schrieb am 2005-10-09:
> How do I check out the current Emacs module? let alone
> determine it in the first place?
http://savannah.gnu.org/cvs/?group=emacs has the answer.
--
Jens Kubieziel http://www.kubieziel.de
FdI#12: Zugriffsschutz
unergonomische Benutzungsoberfläche (Kristian Köhntopp)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
2005-10-09 19:18 cvs emacs Sean Sieger
2005-10-09 20:03 ` Bill Wohler
@ 2005-10-09 21:49 ` Peter Dyballa
2005-10-10 2:34 ` Bill Wohler
1 sibling, 1 reply; 7+ messages in thread
From: Peter Dyballa @ 2005-10-09 21:49 UTC (permalink / raw)
Cc: help-gnu-emacs
Am 09.10.2005 um 21:18 schrieb Sean Sieger:
> How do I check out the current Emacs module? let alone
> determine it in the first place?
>
setenv CVS_RSH ssh
For GNU Emacs 22
cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co emacs
To update:
cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs update emacs
or: cd emacs ; cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs
update
For Unicode Emacs 23:
cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co -d
emacs-unicode -r emacs-unicode-2 -P emacs
To update:
cd emacs-unicode ; cvs -z3
-d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs update
I couldn't find this information on
http://savannah.gnu.org/cvs/?group=emacs.
--
Greetings
Pete
If all else fails read the instructions. - Donald Knuth
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
2005-10-09 20:03 ` Bill Wohler
@ 2005-10-09 23:27 ` Sean Sieger
2005-10-10 9:15 ` Peter Dyballa
0 siblings, 1 reply; 7+ messages in thread
From: Sean Sieger @ 2005-10-09 23:27 UTC (permalink / raw)
Bill Wohler <wohler@newt.com> writes:
Sean Sieger <sean.sieger@gmail.com> writes:
> How do I check out the current Emacs module? let alone
> determine it in the first place?
Please read:
http://savannah.gnu.org/cvs/?group=emacs
Thank you. So when I do
cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co emacs
I am indeed checking out the current module? When I did the above
command on 2005-08-25, and then installed it, I found that I had
installed Emacs 22.0.50.1 and somehow got it in my head that I had
not installed the current version of CVS Emacs.
I did not ask the right question.
--
Sean Sieger
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
2005-10-09 21:49 ` Peter Dyballa
@ 2005-10-10 2:34 ` Bill Wohler
0 siblings, 0 replies; 7+ messages in thread
From: Bill Wohler @ 2005-10-10 2:34 UTC (permalink / raw)
Sean Sieger <sean.sieger@gmail.com> wrote:
> I am indeed checking out the current module? When I did the above
> command on 2005-08-25, and then installed it, I found that I had
> installed Emacs 22.0.50.1 and somehow got it in my head that I had
> not installed the current version of CVS Emacs.
If you do not specify an older revision with the -r option, you get
the bleeding edge, which I think is what you're looking for.
Peter Dyballa <Peter_Dyballa@Web.DE> writes:
> For Unicode Emacs 23:
>
> cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co -d
> emacs-unicode -r emacs-unicode-2 -P emacs
>
> To update:
>
> cd emacs-unicode ; cvs -z3
> -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs update
I didn't realize this module even existed. Hmmm.
By the way, for the update you can simplify to:
cd emacs-unicode; cvs up
You can add "cvs -z3" to your ~/.cvsrc so you don't have to type it
all the time.
--
Bill Wohler <wohler@newt.com> http://www.newt.com/wohler/ GnuPG ID:610BD9AD
Maintainer of comp.mail.mh FAQ and MH-E. Vote Libertarian!
If you're passed on the right, you're in the wrong lane.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: cvs emacs
2005-10-09 23:27 ` Sean Sieger
@ 2005-10-10 9:15 ` Peter Dyballa
0 siblings, 0 replies; 7+ messages in thread
From: Peter Dyballa @ 2005-10-10 9:15 UTC (permalink / raw)
Cc: help-gnu-emacs
Am 10.10.2005 um 01:27 schrieb Sean Sieger:
> I am indeed checking out the current module? When I did the above
> command on 2005-08-25, and then installed it, I found that I had
> installed Emacs 22.0.50.1 and somehow got it in my head that I had
> not installed the current version of CVS Emacs.
Although the recent stable version of GNU Emacs is 21.4, it's CVS
version is 22.0.50. Before GNU Emacs 21.4 was released the same was
true. Long ago (last year?) there was a GNU Emacs 21.3.50 from CVS
available. I presume the 'model' was changed around last Christmas ...
>
> I did not ask the right question.
>
Could be that's another explanation ...
--
Mit friedvollen Grüßen
Pete
Time flies like an error
but fruit flies like a banana
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-10-10 9:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-09 19:18 cvs emacs Sean Sieger
2005-10-09 20:03 ` Bill Wohler
2005-10-09 23:27 ` Sean Sieger
2005-10-10 9:15 ` Peter Dyballa
2005-10-09 21:49 ` Peter Dyballa
2005-10-10 2:34 ` Bill Wohler
[not found] <mailman.10569.1128885570.20277.help-gnu-emacs@gnu.org>
2005-10-09 20:14 ` Jens Kubieziel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).