annotate doc/emacs/vc1-xtra.texi @ 112397:a7191495c39c

Include entries from yesterdays checkins that were in an unsaved buffer.
author Ken Manheimer <ken.manheimer@gmail.com>
date Fri, 21 Jan 2011 11:36:24 -0500
parents ef719132ddfa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1 @c This is part of the Emacs manual.
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 111761
diff changeset
2 @c Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
103794
ce767480885f (Revision Tags): Fix typo.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
3 @c Free Software Foundation, Inc.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
4 @c See file emacs.texi for copying conditions.
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5 @c
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6 @c This file is included either in vc-xtra.texi (when producing the
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7 @c printed version) or in the main Emacs manual (for the on-line version).
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
8
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
9 @node Remote Repositories
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
10 @subsection Remote Repositories
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
11 @cindex remote repositories
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
12
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
13 A common way of using CVS and other more advanced VCSes is to set up
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
14 a central repository on some Internet host, then have each
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
15 developer check out a personal working copy of the files on his local
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
16 machine. Committing changes to the repository, and picking up changes
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
17 from other users into one's own working area, then works by direct
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
18 interactions with the repository server.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
19
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
20 One difficulty is that access to a repository server is often slow,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
21 and that developers might need to work off-line as well. While only
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
22 third-generation decentralized VCses such as GNU Arch or Mercurial
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
23 really solve this problem, VC is designed to reduce the amount of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
24 network interaction necessary.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
25
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
26 If you are using a truly decentralized VCS you can skip the rest of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
27 this section. It describes backup and local-repository techniques
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
28 that are only useful for Subversion and earlier VCSes.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
29
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
30 @menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
31 * Version Backups:: Keeping local copies of repository versions.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
32 * Local Version Control:: Using another version system for local editing.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
33 @end menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
34
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
35 @node Version Backups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
36 @subsubsection Version Backups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
37 @cindex version backups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
38
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
39 @cindex automatic version backups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
40 When VC sees that the repository for a file is on a remote
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
41 machine, it automatically makes local backups of unmodified versions
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
42 of the file---@dfn{automatic version backups}. This means that you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
43 can compare the file to the repository version (@kbd{C-x v =}), or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
44 revert to that version (@kbd{C-x v u}), without any network
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
45 interactions.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
46
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
47 The local copy of the unmodified file is called a @dfn{version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
48 backup} to indicate that it corresponds exactly to a version that is
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
49 stored in the repository. Note that version backups are not the same
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
50 as ordinary Emacs backup files
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
51 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
52 (@pxref{Backup,,,emacs, the Emacs Manual}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
53 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
54 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
55 (@pxref{Backup}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
56 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
57 But they follow a similar naming convention.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
58
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
59 For a file that comes from a remote repository, VC makes a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
60 version backup whenever you save the first changes to the file, and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
61 removes it after you have committed your modified version to the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
62 repository. You can disable the making of automatic version backups by
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
63 setting @code{vc-cvs-stay-local} to @code{nil} (@pxref{CVS Options}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
64
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
65 @cindex manual version backups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
66 The name of the automatic version backup for version @var{version}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
67 of file @var{file} is @code{@var{file}.~@var{version}.~}. This is
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
68 almost the same as the name used by @kbd{C-x v ~}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
69 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
70 (@pxref{Old Revisions,,,emacs, the Emacs Manual}),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
71 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
72 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
73 (@pxref{Old Revisions}),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
74 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
75 the only difference being the additional dot (@samp{.}) after the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
76 version number. This similarity is intentional, because both kinds of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
77 files store the same kind of information. The file made by @kbd{C-x v
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
78 ~} acts as a @dfn{manual version backup}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
79
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
80 All the VC commands that operate on old versions of a file can use
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
81 both kinds of version backups. For instance, @kbd{C-x v ~} uses
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
82 either an automatic or a manual version backup, if possible, to get
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
83 the contents of the version you request. Likewise, @kbd{C-x v =} and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
84 @kbd{C-x v u} use either an automatic or a manual version backup, if
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
85 one of them exists, to get the contents of a version to compare or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
86 revert to. If you changed a file outside of Emacs, so that no
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
87 automatic version backup was created for the previous text, you can
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
88 create a manual backup of that version using @kbd{C-x v ~}, and thus
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
89 obtain the benefit of the local copy for Emacs commands.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
90
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
91 The only difference in Emacs's handling of manual and automatic
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
92 version backups, once they exist, is that Emacs deletes automatic
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
93 version backups when you commit to the repository. By contrast,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
94 manual version backups remain until you delete them.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
95
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
96 @node Local Version Control
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
97 @subsubsection Local Version Control
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
98 @cindex local version control
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
99 @cindex local back end (version control)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
100
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
101 When you make many changes to a file that comes from a remote
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
102 repository, it can be convenient to have version control on your local
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
103 machine as well. You can then record intermediate versions, revert to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
104 a previous state, etc., before you actually commit your changes to the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
105 remote server.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
106
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
107 VC lets you do this by putting a file under a second, local version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
108 control system, so that the file is effectively registered in two
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
109 systems at the same time. For the description here, we will assume
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
110 that the remote system is CVS, and you use RCS locally, although the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
111 mechanism works with any combination of version control systems
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
112 (@dfn{back ends}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
113
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
114 To make it work with other back ends, you must make sure that the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
115 ``more local'' back end comes before the ``more remote'' back end in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
116 the setting of @code{vc-handled-backends} (@pxref{Customizing VC}). By
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
117 default, this variable is set up so that you can use remote CVS and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
118 local RCS as described here.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
119
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
120 To start using local RCS for a file that comes from a remote CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
121 server, you must @emph{register the file in RCS}, by typing @kbd{C-u
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
122 C-x v v rcs @key{RET}}. (In other words, use @code{vc-next-action} with a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
123 prefix argument, and specify RCS as the back end.)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
124
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
125 You can do this at any time; it does not matter whether you have
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
126 already modified the file with respect to the version in the CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
127 repository. If possible, VC tries to make the RCS master start with
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
128 the unmodified repository version, then checks in any local changes
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
129 as a new version. This works if you have not made any changes yet, or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
130 if the unmodified repository version exists locally as a version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
131 backup (@pxref{Version Backups}). If the unmodified version is not
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
132 available locally, the RCS master starts with the modified version;
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
133 the only drawback to this is that you cannot compare your changes
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
134 locally to what is stored in the repository.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
135
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
136 The version number of the RCS master is derived from the current CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
137 version, starting a branch from it. For example, if the current CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
138 version is 1.23, the local RCS branch will be 1.23.1. Version 1.23 in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
139 the RCS master will be identical to version 1.23 under CVS; your first
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
140 changes are checked in as 1.23.1.1. (If the unmodified file is not
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
141 available locally, VC will check in the modified file twice, both as
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
142 1.23 and 1.23.1.1, to make the revision numbers consistent.)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
143
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
144 If you do not use locking under CVS (the default), locking is also
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
145 disabled for RCS, so that editing under RCS works exactly as under
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
146 CVS.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
147
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
148 When you are done with local editing, you can commit the final version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
149 back to the CVS repository by typing @kbd{C-u C-x v v cvs @key{RET}}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
150 This initializes the log entry buffer
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
151 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
152 (@pxref{Log Buffer,,,emacs, the Emacs Manual})
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
153 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
154 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
155 (@pxref{Log Buffer})
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
156 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
157 to contain all the log entries you have recorded in the RCS master;
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
158 you can edit them as you wish, and then commit in CVS by typing
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
159 @kbd{C-c C-c}. If the commit is successful, VC removes the RCS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
160 master, so that the file is once again registered under CVS only.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
161 (The RCS master is not actually deleted, just renamed by appending
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
162 @samp{~} to the name, so that you can refer to it later if you wish.)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
163
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
164 While using local RCS, you can pick up recent changes from the CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
165 repository into your local file, or commit some of your changes back
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
166 to CVS, without terminating local RCS version control. To do this,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
167 switch to the CVS back end temporarily, with the @kbd{C-x v b} command:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
168
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
169 @table @kbd
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
170 @item C-x v b
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
171 Switch to another back end that the current file is registered
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
172 under (@code{vc-switch-backend}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
173
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
174 @item C-u C-x v b @var{backend} @key{RET}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
175 Switch to @var{backend} for the current file.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
176 @end table
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
177
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
178 @kindex C-x v b
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
179 @findex vc-switch-backend
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
180 @kbd{C-x v b} does not change the buffer contents, or any files; it
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
181 only changes VC's perspective on how to handle the file. Any
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
182 subsequent VC commands for that file will operate on the back end that
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
183 is currently selected.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
184
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
185 If the current file is registered in more than one back end, typing
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
186 @kbd{C-x v b} ``cycles'' through all of these back ends. With a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
187 prefix argument, it asks for the back end to use in the minibuffer.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
188
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
189 Thus, if you are using local RCS, and you want to pick up some recent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
190 changes in the file from remote CVS, first visit the file, then type
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
191 @kbd{C-x v b} to switch to CVS, and finally use @kbd{C-x v m
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
192 @key{RET}} to merge the news
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
193 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
194 (@pxref{Merging,,,emacs, the Emacs Manual}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
195 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
196 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
197 (@pxref{Merging}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
198 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
199 You can then switch back to RCS by typing @kbd{C-x v b} again, and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
200 continue to edit locally.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
201
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
202 But if you do this, the revision numbers in the RCS master no longer
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
203 correspond to those of CVS. Technically, this is not a problem, but
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
204 it can become difficult to keep track of what is in the CVS repository
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
205 and what is not. So we suggest that you return from time to time to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
206 CVS-only operation, by committing your local changes back to the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
207 repository using @kbd{C-u C-x v v cvs @key{RET}}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
208
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
209 @node Revision Tags
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
210 @subsection Revision Tags
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
211 @cindex tags and version control
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
212
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
213 In a VCS with per-file revision numbers (such as SCCS, RCS, or CVS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
214 @dfn{tag} is a named set of file versions (one for each registered
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
215 file) that you can treat as a unit. In a VCS with per-repository
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
216 version numbers (Subversion and most later ones) a tag is simply
103794
ce767480885f (Revision Tags): Fix typo.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
217 a symbolic name for a revision.
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
218
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
219 One important kind of tag is a @dfn{release}, a (theoretically)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
220 stable version of the system that is ready for distribution to users.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
221
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
222 @menu
109262
51ddcf320fe4 Untabify doc/emacs/*.texi files.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
223 * Making Revision Tags:: The tag facilities.
51ddcf320fe4 Untabify doc/emacs/*.texi files.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
224 * Revision Tag Caveats:: Things to be careful of when using tags.
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
225 @end menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
226
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
227 @node Making Revision Tags
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
228 @subsubsection Making and Using Revision Tags
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
229
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
230 There are two basic commands for tags; one makes a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
231 tag with a given name, the other retrieves a named tag.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
232
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
233 @table @code
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
234 @kindex C-x v s
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
235 @findex vc-create-tag
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
236 @item C-x v s @var{name} @key{RET}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
237 Define the working revision of every registered file in or under the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
238 current directory as a tag named @var{name}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
239 (@code{vc-create-tag}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
240
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
241 @kindex C-x v r
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
242 @findex vc-retrieve-tag
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
243 @item C-x v r @var{name} @key{RET}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
244 For all registered files at or below the current directory level,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
245 retrieve the tagged revision @var{name}. This command will
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
246 switch to a branch if @var{name} is a branch name and your VCS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
247 distinguishes branches from tags.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
248 (@code{vc-retrieve-tag}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
249
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
250 This command reports an error if any files are locked at or below the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
251 current directory, without changing anything; this is to avoid
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
252 overwriting work in progress.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
253 @end table
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
254
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
255 Tags are inexpensive, so you need not hesitate to create them whenever
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
256 they are useful. Branches vary in cost depending on your VCS; in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
257 older ones they may be expensive.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
258
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
259 You can give a tag or branch name as an argument to @kbd{C-x v =} or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
260 @kbd{C-x v ~}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
261 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
262 (@pxref{Old Revisions,,,emacs, the Emacs Manual}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
263 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
264 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
265 (@pxref{Old Revisions}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
266 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
267 Thus, you can use it to compare a tagged version against the current files,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
268 or two tagged versions against each other.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
269
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
270 @node Revision Tag Caveats
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
271 @subsubsection Revision Tag Caveats
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
272
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
273 For SCCS, VC implements tags itself; these tags are visible only
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
274 through VC. Most later systems (including CVS, Subversion, bzr, git,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
275 and hg) have a native tag facility, and VC uses it where
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
276 available; those tags will be visible even when you bypass VC.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
277
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
278 There is no support for VC tags using GNU Arch yet.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
279
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
280 Under older VCSes (SCCS, RCS, CVS, early versions of Subversion),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
281 renaming and deletion could create some difficulties with tags. This is
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
282 not a VC-specific problem, but a general design issue in version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
283 control systems that was not solved effectively until the earliest
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
284 third-generation systems.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
285
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
286 In a file-oriented VCS, when you rename a registered file you need
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
287 to rename its master along with it; the command @code{vc-rename-file}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
288 will do this automatically. If you are using SCCS, you must also
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
289 update the records of the tag, to mention the file by its new name
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
290 (@code{vc-rename-file} does this, too). An old tag that refers to a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
291 master file that no longer exists under the recorded name is invalid;
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
292 VC can no longer retrieve it. It would be beyond the scope of this
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
293 manual to explain enough about RCS and SCCS to explain how to update
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
294 the tags by hand.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
295
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
296 Using @code{vc-rename-file} makes the tag remain valid for
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
297 retrieval, but it does not solve all problems. For example, some of the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
298 files in your program probably refer to others by name. At the very
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
299 least, the makefile probably mentions the file that you renamed. If you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
300 retrieve an old tag, the renamed file is retrieved under its new
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
301 name, which is not the name that the makefile expects. So the program
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
302 won't really work as retrieved.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
303
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
304 @node Miscellaneous VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
305 @subsection Miscellaneous Commands and Features of VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
306
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
307 This section explains the less-frequently-used features of VC.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
308
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
309 @menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
310 * Change Logs and VC:: Generating a change log file from log entries.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
311 * Renaming and VC:: A command to rename both the source and master
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
312 file correctly.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
313 * Version Headers:: Inserting version control headers into working files.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
314 @end menu
97312
aa4551463556 (VC Directory Mode): Talk about multiple VC systems.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 97284
diff changeset
315
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
316 @node Change Logs and VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
317 @subsubsection Change Logs and VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
318
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
319 If you use RCS or CVS for a program and also maintain a change log
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
320 file for it
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
321 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
322 (@pxref{Change Log,,,emacs, the Emacs Manual}),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
323 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
324 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
325 (@pxref{Change Log}),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
326 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
327 you can generate change log entries automatically from the version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
328 control log entries:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
329
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
330 @table @kbd
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
331 @item C-x v a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
332 @kindex C-x v a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
333 @findex vc-update-change-log
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
334 Visit the current directory's change log file and, for registered files
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
335 in that directory, create new entries for versions checked in since the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
336 most recent entry in the change log file.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
337 (@code{vc-update-change-log}).
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
338
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
339 This command works with RCS or CVS only, not with any of the other
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
340 back ends.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
341
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
342 @item C-u C-x v a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
343 As above, but only find entries for the current buffer's file.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
344
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
345 @item M-1 C-x v a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
346 As above, but find entries for all the currently visited files that are
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
347 maintained with version control. This works only with RCS, and it puts
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
348 all entries in the log for the default directory, which may not be
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
349 appropriate.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
350 @end table
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
351
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
352 For example, suppose the first line of @file{ChangeLog} is dated
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
353 1999-04-10, and that the only check-in since then was by Nathaniel
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
354 Bowditch to @file{rcs2log} on 1999-05-22 with log text @samp{Ignore log
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
355 messages that start with `#'.}. Then @kbd{C-x v a} visits
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
356 @file{ChangeLog} and inserts text like this:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
357
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
358 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
359 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
360 @end iftex
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
361 @smallexample
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
362 @group
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
363 1999-05-22 Nathaniel Bowditch <nat@@apn.org>
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
364
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
365 * rcs2log: Ignore log messages that start with `#'.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
366 @end group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
367 @end smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
368 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
369 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
370 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
371
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
372 @noindent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
373 You can then edit the new change log entry further as you wish.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
374
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
375 Some of the new change log entries may duplicate what's already in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
376 ChangeLog. You will have to remove these duplicates by hand.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
377
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
378 Normally, the log entry for file @file{foo} is displayed as @samp{*
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
379 foo: @var{text of log entry}}. The @samp{:} after @file{foo} is omitted
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
380 if the text of the log entry starts with @w{@samp{(@var{functionname}):
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
381 }}. For example, if the log entry for @file{vc.el} is
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
382 @samp{(vc-do-command): Check call-process status.}, then the text in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
383 @file{ChangeLog} looks like this:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
384
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
385 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
386 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
387 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
388 @smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
389 @group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
390 1999-05-06 Nathaniel Bowditch <nat@@apn.org>
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
391
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
392 * vc.el (vc-do-command): Check call-process status.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
393 @end group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
394 @end smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
395 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
396 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
397 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
398
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
399 When @kbd{C-x v a} adds several change log entries at once, it groups
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
400 related log entries together if they all are checked in by the same
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
401 author at nearly the same time. If the log entries for several such
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
402 files all have the same text, it coalesces them into a single entry.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
403 For example, suppose the most recent check-ins have the following log
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
404 entries:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
405
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
406 @flushleft
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
407 @bullet{} For @file{vc.texinfo}: @samp{Fix expansion typos.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
408 @bullet{} For @file{vc.el}: @samp{Don't call expand-file-name.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
409 @bullet{} For @file{vc-hooks.el}: @samp{Don't call expand-file-name.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
410 @end flushleft
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
411
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
412 @noindent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
413 They appear like this in @file{ChangeLog}:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
414
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
415 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
416 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
417 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
418 @smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
419 @group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
420 1999-04-01 Nathaniel Bowditch <nat@@apn.org>
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
421
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
422 * vc.texinfo: Fix expansion typos.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
423
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
424 * vc.el, vc-hooks.el: Don't call expand-file-name.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
425 @end group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
426 @end smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
427 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
428 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
429 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
430
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
431 Normally, @kbd{C-x v a} separates log entries by a blank line, but you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
432 can mark several related log entries to be clumped together (without an
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
433 intervening blank line) by starting the text of each related log entry
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
434 with a label of the form @w{@samp{@{@var{clumpname}@} }}. The label
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
435 itself is not copied to @file{ChangeLog}. For example, suppose the log
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
436 entries are:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
437
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
438 @flushleft
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
439 @bullet{} For @file{vc.texinfo}: @samp{@{expand@} Fix expansion typos.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
440 @bullet{} For @file{vc.el}: @samp{@{expand@} Don't call expand-file-name.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
441 @bullet{} For @file{vc-hooks.el}: @samp{@{expand@} Don't call expand-file-name.}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
442 @end flushleft
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
443
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
444 @noindent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
445 Then the text in @file{ChangeLog} looks like this:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
446
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
447 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
448 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
449 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
450 @smallexample
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
451 @group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
452 1999-04-01 Nathaniel Bowditch <nat@@apn.org>
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
453
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
454 * vc.texinfo: Fix expansion typos.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
455 * vc.el, vc-hooks.el: Don't call expand-file-name.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
456 @end group
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
457 @end smallexample
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
458 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
459 @medbreak
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
460 @end iftex
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
461
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
462 A log entry whose text begins with @samp{#} is not copied to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
463 @file{ChangeLog}. For example, if you merely fix some misspellings in
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
464 comments, you can log the change with an entry beginning with @samp{#}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
465 to avoid putting such trivia into @file{ChangeLog}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
466
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
467 @node Renaming and VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
468 @subsubsection Renaming VC Work Files and Master Files
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
469
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
470 @findex vc-rename-file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
471 When you rename a registered file, you must also rename its master
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
472 file correspondingly to get proper results. Use @code{vc-rename-file}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
473 to rename the source file as you specify, and rename its master file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
474 accordingly. It also updates any tags (@pxref{Revision Tags}) that
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
475 mention the file, so that they use the new name; despite this, the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
476 tag thus modified may not completely work (@pxref{Revision Tag Caveats}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
477
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
478 Some back ends do not provide an explicit rename operation to their
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
479 repositories. After issuing @code{vc-rename-file}, use @kbd{C-x v v}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
480 on the original and renamed buffers and provide the necessary edit
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
481 log.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
482
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
483 You cannot use @code{vc-rename-file} on a file that is locked by
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
484 someone else.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
485
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
486 @node Version Headers
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
487 @subsubsection Inserting Version Control Headers
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
488
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
489 Sometimes it is convenient to put version identification strings
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
490 directly into working files. Certain special strings called
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
491 @dfn{version headers} are replaced in each successive version by the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
492 number of that version, the name of the user who created it, and other
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
493 relevant information. All of the back ends that VC supports have such
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
494 a mechanism, except GNU Arch.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
495
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
496 VC does not normally use the information contained in these headers.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
497 The exception is RCS---with RCS, version headers are sometimes more
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
498 reliable than the master file to determine which version of the file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
499 you are editing. Note that in a multi-branch environment, version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
500 headers are necessary to make VC behave correctly
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
501 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
502 (@pxref{Multi-User Branching,,,emacs, the Emacs Manual}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
503 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
504 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
505 (@pxref{Multi-User Branching}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
506 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
507
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
508 Searching for RCS version headers is controlled by the variable
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
509 @code{vc-consult-headers}. If it is non-@code{nil} (the default),
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
510 Emacs searches for headers to determine the version number you are
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
511 editing. Setting it to @code{nil} disables this feature.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
512
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
513 Note that although CVS uses the same kind of version headers as RCS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
514 does, VC never searches for these headers if you are using CVS,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
515 regardless of the above setting.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
516
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
517 @kindex C-x v h
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
518 @findex vc-insert-headers
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
519 You can use the @kbd{C-x v h} command (@code{vc-insert-headers}) to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
520 insert a suitable header string.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
521
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
522 @table @kbd
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
523 @item C-x v h
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
524 Insert headers in a file for use with your version-control system.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
525 @end table
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
526
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
527 @vindex vc-@var{backend}-header
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
528 The default header string is @samp{@w{$}Id$} for RCS and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
529 @samp{@w{%}W%} for SCCS. You can specify other headers to insert by
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
530 setting the variables @code{vc-@var{backend}-header} where
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
531 @var{backend} is @code{rcs} or @code{sccs}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
532
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
533 Instead of a single string, you can specify a list of strings; then
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
534 each string in the list is inserted as a separate header on a line of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
535 its own.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
536
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
537 It may be necessary to use apparently-superfluous backslashes when
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
538 writing the strings that you put in this variable. For instance, you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
539 might write @code{"$Id\$"} rather than @code{"$Id@w{$}"}. The extra
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
540 backslash prevents the string constant from being interpreted as a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
541 header, if the Emacs Lisp file containing it is maintained with
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
542 version control.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
543
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
544 @vindex vc-comment-alist
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
545 Each header is inserted surrounded by tabs, inside comment delimiters,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
546 on a new line at point. Normally the ordinary comment
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
547 start and comment end strings of the current mode are used, but for
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
548 certain modes, there are special comment delimiters for this purpose;
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
549 the variable @code{vc-comment-alist} specifies them. Each element of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
550 this list has the form @code{(@var{mode} @var{starter} @var{ender})}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
551
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
552 @vindex vc-static-header-alist
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
553 The variable @code{vc-static-header-alist} specifies further strings
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
554 to add based on the name of the buffer. Its value should be a list of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
555 elements of the form @code{(@var{regexp} . @var{format})}. Whenever
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
556 @var{regexp} matches the buffer name, @var{format} is inserted as part
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
557 of the header. A header line is inserted for each element that matches
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
558 the buffer name, and for each string specified by
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
559 @code{vc-@var{backend}-header}. The header line is made by processing the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
560 string from @code{vc-@var{backend}-header} with the format taken from the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
561 element. The default value for @code{vc-static-header-alist} is as follows:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
562
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
563 @example
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
564 @group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
565 (("\\.c$" .
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
566 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n\
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
567 #endif /* lint */\n"))
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
568 @end group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
569 @end example
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
570
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
571 @noindent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
572 It specifies insertion of text of this form:
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
573
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
574 @example
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
575 @group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
576
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
577 #ifndef lint
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
578 static char vcid[] = "@var{string}";
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
579 #endif /* lint */
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
580 @end group
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
581 @end example
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
582
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
583 @noindent
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
584 Note that the text above starts with a blank line.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
585
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
586 If you use more than one version header in a file, put them close
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
587 together in the file. The mechanism in @code{revert-buffer} that
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
588 preserves markers may not handle markers positioned between two version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
589 headers.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
590
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
591 @node Customizing VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
592 @subsection Customizing VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
593
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
594 @vindex vc-handled-backends
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
595 The variable @code{vc-handled-backends} determines which version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
596 control systems VC should handle. The default value is @code{(RCS CVS
111761
6e3b84ac704d Small VC fixes for doc/emacs.
Glenn Morris <rgm@gnu.org>
parents: 109262
diff changeset
597 SVN SCCS Bzr Git Hg Mtn Arch)}, so it contains all the version systems
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
598 that are currently supported. If you want VC to ignore one or more of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
599 these systems, exclude its name from the list. To disable VC entirely,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
600 set this variable to @code{nil}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
601
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
602 The order of systems in the list is significant: when you visit a file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
603 registered in more than one system (@pxref{Local Version Control}), VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
604 uses the system that comes first in @code{vc-handled-backends} by
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
605 default. The order is also significant when you register a file for
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
606 the first time, see
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
607 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
608 @ref{Registering,,,emacs, the Emacs Manual},
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
609 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
610 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
611 @ref{Registering},
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
612 @end ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
613 for details.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
614
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
615 @menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
616 * General VC Options:: Options that apply to multiple back ends.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
617 * RCS and SCCS:: Options for RCS and SCCS.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
618 * CVS Options:: Options for CVS.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
619 @end menu
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
620
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
621 @node General VC Options
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
622 @subsubsection General Options
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
623
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
624 @vindex vc-make-backup-files
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
625 Emacs normally does not save backup files for source files that are
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
626 maintained with version control. If you want to make backup files even
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
627 for files that use version control, set the variable
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
628 @code{vc-make-backup-files} to a non-@code{nil} value.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
629
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
630 @vindex vc-keep-workfiles
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
631 Normally the work file exists all the time, whether it is locked or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
632 not. If you set @code{vc-keep-workfiles} to @code{nil}, then checking
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
633 in a new version with @kbd{C-x v v} deletes the work file; but any
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
634 attempt to visit the file with Emacs creates it again. (With CVS, work
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
635 files are always kept.)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
636
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
637 @vindex vc-follow-symlinks
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
638 Editing a version-controlled file through a symbolic link can be
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
639 dangerous. It bypasses the version control system---you can edit the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
640 file without locking it, and fail to check your changes in. Also,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
641 your changes might overwrite those of another user. To protect against
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
642 this, VC checks each symbolic link that you visit, to see if it points
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
643 to a file under version control.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
644
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
645 The variable @code{vc-follow-symlinks} controls what to do when a
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
646 symbolic link points to a version-controlled file. If it is @code{nil},
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
647 VC only displays a warning message. If it is @code{t}, VC automatically
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
648 follows the link, and visits the real file instead, telling you about
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
649 this in the echo area. If the value is @code{ask} (the default), VC
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
650 asks you each time whether to follow the link.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
651
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
652 @vindex vc-suppress-confirm
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
653 If @code{vc-suppress-confirm} is non-@code{nil}, then @kbd{C-x v v}
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
654 and @kbd{C-x v i} can save the current buffer without asking, and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
655 @kbd{C-x v u} also operates without asking for confirmation. (This
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
656 variable does not affect @kbd{C-x v c}; that operation is so drastic
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
657 that it should always ask for confirmation.)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
658
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
659 @vindex vc-command-messages
111761
6e3b84ac704d Small VC fixes for doc/emacs.
Glenn Morris <rgm@gnu.org>
parents: 109262
diff changeset
660 VC mode does much of its work by running the shell commands for the
6e3b84ac704d Small VC fixes for doc/emacs.
Glenn Morris <rgm@gnu.org>
parents: 109262
diff changeset
661 appropriate backend. If @code{vc-command-messages} is non-@code{nil}, VC
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
662 displays messages to indicate which shell commands it runs, and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
663 additional messages when the commands finish.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
664
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
665 @vindex vc-path
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
666 You can specify additional directories to search for version control
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
667 programs by setting the variable @code{vc-path}. These directories
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
668 are searched before the usual search path. It is rarely necessary to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
669 set this variable, because VC normally finds the proper files
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
670 automatically.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
671
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
672 @node RCS and SCCS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
673 @subsubsection Options for RCS and SCCS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
674
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
675 @cindex non-strict locking (RCS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
676 @cindex locking, non-strict (RCS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
677 By default, RCS uses locking to coordinate the activities of several
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
678 users, but there is a mode called @dfn{non-strict locking} in which
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
679 you can check-in changes without locking the file first. Use
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
680 @samp{rcs -U} to switch to non-strict locking for a particular file,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
681 see the @code{rcs} manual page for details.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
682
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
683 When deducing the version control state of an RCS file, VC first
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
684 looks for an RCS version header string in the file (@pxref{Version
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
685 Headers}). If there is no header string, VC normally looks at the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
686 file permissions of the work file; this is fast. But there might be
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
687 situations when the file permissions cannot be trusted. In this case
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
688 the master file has to be consulted, which is rather expensive. Also
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
689 the master file can only tell you @emph{if} there's any lock on the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
690 file, but not whether your work file really contains that locked
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
691 version.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
692
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
693 @vindex vc-consult-headers
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
694 You can tell VC not to use version headers to determine the file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
695 status by setting @code{vc-consult-headers} to @code{nil}. VC then
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
696 always uses the file permissions (if it is supposed to trust them), or
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
697 else checks the master file.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
698
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
699 @vindex vc-mistrust-permissions
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
700 You can specify the criterion for whether to trust the file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
701 permissions by setting the variable @code{vc-mistrust-permissions}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
702 Its value can be @code{t} (always mistrust the file permissions and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
703 check the master file), @code{nil} (always trust the file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
704 permissions), or a function of one argument which makes the decision.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
705 The argument is the directory name of the @file{RCS} subdirectory. A
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
706 non-@code{nil} value from the function says to mistrust the file
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
707 permissions. If you find that the file permissions of work files are
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
708 changed erroneously, set @code{vc-mistrust-permissions} to @code{t}.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
709 Then VC always checks the master file to determine the file's status.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
710
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
711 VC determines the version control state of files under SCCS much as
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
712 with RCS. It does not consider SCCS version headers, though. Thus,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
713 the variable @code{vc-mistrust-permissions} affects SCCS use, but
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
714 @code{vc-consult-headers} does not.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
715
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
716 @node CVS Options
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
717 @subsubsection Options specific for CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
718
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
719 @cindex locking (CVS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
720 By default, CVS does not use locking to coordinate the activities of
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
721 several users; anyone can change a work file at any time. However,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
722 there are ways to restrict this, resulting in behavior that resembles
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
723 locking.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
724
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
725 @cindex CVSREAD environment variable (CVS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
726 For one thing, you can set the @env{CVSREAD} environment variable
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
727 (the value you use makes no difference). If this variable is defined,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
728 CVS makes your work files read-only by default. In Emacs, you must
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
729 type @kbd{C-x v v} to make the file writable, so that editing works
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
730 in fact similar as if locking was used. Note however, that no actual
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
731 locking is performed, so several users can make their files writable
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
732 at the same time. When setting @env{CVSREAD} for the first time, make
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
733 sure to check out all your modules anew, so that the file protections
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
734 are set correctly.
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
735
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
736 @cindex cvs watch feature
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
737 @cindex watching files (CVS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
738 Another way to achieve something similar to locking is to use the
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
739 @dfn{watch} feature of CVS. If a file is being watched, CVS makes it
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
740 read-only by default, and you must also use @kbd{C-x v v} in Emacs to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
741 make it writable. VC calls @code{cvs edit} to make the file writable,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
742 and CVS takes care to notify other developers of the fact that you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
743 intend to change the file. See the CVS documentation for details on
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
744 using the watch feature.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
745
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
746 @vindex vc-stay-local
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
747 @vindex vc-cvs-stay-local
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
748 @cindex remote repositories (CVS)
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
749 When a file's repository is on a remote machine, VC tries to keep
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
750 network interactions to a minimum. This is controlled by the variable
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
751 @code{vc-cvs-stay-local}. There is another variable,
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
752 @code{vc-stay-local}, which enables the feature also for other back
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
753 ends that support it, including CVS. In the following, we will talk
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
754 only about @code{vc-cvs-stay-local}, but everything applies to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
755 @code{vc-stay-local} as well.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
756
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
757 If @code{vc-cvs-stay-local} is @code{t} (the default), then VC uses
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
758 only the entry in the local CVS subdirectory to determine the file's
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
759 state (and possibly information returned by previous CVS commands).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
760 One consequence of this is that when you have modified a file, and
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
761 somebody else has already checked in other changes to the file, you
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
762 are not notified of it until you actually try to commit. (But you can
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
763 try to pick up any recent changes from the repository first, using
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
764 @kbd{C-x v m @key{RET}},
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
765 @iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
766 @pxref{Merging,,,emacs, the Emacs Manual}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
767 @end iftex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
768 @ifnottex
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
769 @pxref{Merging}).
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
770 @end ifnottex
97220
605f76f600ae (VC Directory Mode): Fix and improve the info about
Dan Nicolaescu <dann@ics.uci.edu>
parents: 97109
diff changeset
771
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
772 When @code{vc-cvs-stay-local} is @code{t}, VC also makes local
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
773 version backups, so that simple diff and revert operations are
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
774 completely local (@pxref{Version Backups}).
97220
605f76f600ae (VC Directory Mode): Fix and improve the info about
Dan Nicolaescu <dann@ics.uci.edu>
parents: 97109
diff changeset
775
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
776 On the other hand, if you set @code{vc-cvs-stay-local} to @code{nil},
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
777 then VC queries the remote repository @emph{before} it decides what to
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
778 do in @code{vc-next-action} (@kbd{C-x v v}), just as it does for local
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
779 repositories. It also does not make any version backups.
94818
8eb267268480 Document the new VC directory mode.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87903
diff changeset
780
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
781 You can also set @code{vc-cvs-stay-local} to a regular expression
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
782 that is matched against the repository host name; VC then stays local
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
783 only for repositories from hosts that match the pattern.
84271
ceb51f666c2a Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
784
99000
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
785 @vindex vc-cvs-global-switches
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
786 You can specify additional command line options to pass to all CVS
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
787 operations in the variable @code{vc-cvs-global-switches}. These
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
788 switches are inserted immediately after the @code{cvs} command, before
c283d0803e3c Move nodes VC Directory Mode and VC Directory Commands to files.texi.
Chong Yidong <cyd@stupidchicken.com>
parents: 97339
diff changeset
789 the name of the operation to invoke.