comparison INSTALL.CVS @ 83038:30ccd595ccb0

Merged in changes from CVS HEAD Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-98 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-99 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-100 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-101 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-102 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-78
author Karoly Lorentey <lorentey@elte.hu>
date Wed, 18 Feb 2004 17:10:32 +0000
parents 6a13a0f9d22b
children 821beb22a34c
comparison
equal deleted inserted replaced
83037:03a73693678e 83038:30ccd595ccb0
46 46
47 Questions, requests, and bug reports about the CVS versions of Emacs 47 Questions, requests, and bug reports about the CVS versions of Emacs
48 should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help 48 should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
49 or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will 49 or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
50 send it to the proper place. 50 send it to the proper place.
51
52
53 Note on using SSH to access the CVS repository from inside emacs
54 ----------------------------------------------------------------
55
56 Write access to the CVS repository requires using SSH v2.
57
58 If you execute cvs commands inside emacs, specifically if you use
59 pcl-cvs, output from CVS may be lost due to a problem in the
60 interface between ssh, cvs, and emacs. Corrupted checkins are
61 also been reported to have happened.
62
63 To fix the problem, save the following script into a file, make it
64 executable, and set CVS_RSH to the file name of the script:
65
66 #!/bin/bash
67 exec 2> >(exec cat >&2 2>/dev/null)
68 exec ssh "$@"
69
70 This may be combined with the following entry in ~/.ssh/config to
71 simplify accessing the CVS repository:
72
73 Host subversions.gnu.org
74 Protocol 2
75 ForwardX11 no
76 User YOUR_USERID