VC section updated. Added a subsection on remote repositories,
[bpt/emacs.git] / man / files.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
259a88ca 2@c Copyright (C) 1985,86,87,93,94,95,97,99, 2000 Free Software Foundation, Inc.
6bf7aab6
DL
3@c See file emacs.texi for copying conditions.
4@node Files, Buffers, Fixit, Top
5@chapter File Handling
6@cindex files
7
8 The operating system stores data permanently in named @dfn{files}. So
9most of the text you edit with Emacs comes from a file and is ultimately
10stored in a file.
11
12 To edit a file, you must tell Emacs to read the file and prepare a
13buffer containing a copy of the file's text. This is called
14@dfn{visiting} the file. Editing commands apply directly to text in the
15buffer; that is, to the copy inside Emacs. Your changes appear in the
16file itself only when you @dfn{save} the buffer back into the file.
17
18 In addition to visiting and saving files, Emacs can delete, copy,
19rename, and append to files, keep multiple versions of them, and operate
20on file directories.
21
22@menu
23* File Names:: How to type and edit file-name arguments.
24* Visiting:: Visiting a file prepares Emacs to edit the file.
25* Saving:: Saving makes your changes permanent.
26* Reverting:: Reverting cancels all the changes not saved.
27* Auto Save:: Auto Save periodically protects against loss of data.
28* File Aliases:: Handling multiple names for one file.
29* Version Control:: Version control systems (RCS, CVS and SCCS).
30* Directories:: Creating, deleting, and listing file directories.
31* Comparing Files:: Finding where two files differ.
32* Misc File Ops:: Other things you can do on files.
33* Compressed Files:: Accessing compressed files.
259a88ca 34* File Archives:: Operating on tar, zip, jar etc. archive files.
6bf7aab6
DL
35* Remote Files:: Accessing files on other sites.
36* Quoted File Names:: Quoting special characters in file names.
f02d86a3 37* File Name Cache:: Completion against a list of files you often use.
9a98ef18 38* File Conveniences:: Convenience Features for Finding Files.
6bf7aab6
DL
39@end menu
40
41@node File Names
42@section File Names
43@cindex file names
44
45 Most Emacs commands that operate on a file require you to specify the
46file name. (Saving and reverting are exceptions; the buffer knows which
47file name to use for them.) You enter the file name using the
48minibuffer (@pxref{Minibuffer}). @dfn{Completion} is available, to make
49it easier to specify long file names. @xref{Completion}.
50
51 For most operations, there is a @dfn{default file name} which is used
52if you type just @key{RET} to enter an empty argument. Normally the
53default file name is the name of the file visited in the current buffer;
54this makes it easy to operate on that file with any of the Emacs file
55commands.
56
57@vindex default-directory
58 Each buffer has a default directory, normally the same as the
59directory of the file visited in that buffer. When you enter a file
60name without a directory, the default directory is used. If you specify
61a directory in a relative fashion, with a name that does not start with
62a slash, it is interpreted with respect to the default directory. The
63default directory is kept in the variable @code{default-directory},
64which has a separate value in every buffer.
65
66 For example, if the default file name is @file{/u/rms/gnu/gnu.tasks} then
67the default directory is @file{/u/rms/gnu/}. If you type just @samp{foo},
68which does not specify a directory, it is short for @file{/u/rms/gnu/foo}.
69@samp{../.login} would stand for @file{/u/rms/.login}. @samp{new/foo}
70would stand for the file name @file{/u/rms/gnu/new/foo}.
71
72@findex cd
73@findex pwd
74 The command @kbd{M-x pwd} prints the current buffer's default
75directory, and the command @kbd{M-x cd} sets it (to a value read using
76the minibuffer). A buffer's default directory changes only when the
77@code{cd} command is used. A file-visiting buffer's default directory
78is initialized to the directory of the file that is visited there. If
79you create a buffer with @kbd{C-x b}, its default directory is copied
80from that of the buffer that was current at the time.
81
82@vindex insert-default-directory
83 The default directory actually appears in the minibuffer when the
84minibuffer becomes active to read a file name. This serves two
85purposes: it @emph{shows} you what the default is, so that you can type
86a relative file name and know with certainty what it will mean, and it
87allows you to @emph{edit} the default to specify a different directory.
88This insertion of the default directory is inhibited if the variable
89@code{insert-default-directory} is set to @code{nil}.
90
91 Note that it is legitimate to type an absolute file name after you
92enter the minibuffer, ignoring the presence of the default directory
93name as part of the text. The final minibuffer contents may look
94invalid, but that is not so. For example, if the minibuffer starts out
95with @samp{/usr/tmp/} and you add @samp{/x1/rms/foo}, you get
96@samp{/usr/tmp//x1/rms/foo}; but Emacs ignores everything through the
97first slash in the double slash; the result is @samp{/x1/rms/foo}.
98@xref{Minibuffer File}.
99
3d853351
EZ
100@cindex environment variables in file names
101@cindex expansion of environment variables
6bf7aab6 102 @samp{$} in a file name is used to substitute environment variables.
f02d86a3 103For example, if you have used the shell command @command{export
60a96371 104FOO=rms/hacks} to set up an environment variable named @env{FOO}, then
6bf7aab6
DL
105you can use @file{/u/$FOO/test.c} or @file{/u/$@{FOO@}/test.c} as an
106abbreviation for @file{/u/rms/hacks/test.c}. The environment variable
107name consists of all the alphanumeric characters after the @samp{$};
108alternatively, it may be enclosed in braces after the @samp{$}. Note
109that shell commands to set environment variables affect Emacs only if
110done before Emacs is started.
111
3d853351
EZ
112@cindex home directory shorthand
113 You can use the @file{~/} in a file name to mean your home directory,
114or @file{~@var{user-id}/} to mean the home directory of a user whose
c6b8d92a
EZ
115login name is @code{user-id}. (On DOS and Windows systems, where a user
116doesn't have a home directory, Emacs substitutes @file{~/} with the
117value of the environment variable @code{HOME}; see @ref{General
118Variables}.)
3d853351 119
6bf7aab6
DL
120 To access a file with @samp{$} in its name, type @samp{$$}. This pair
121is converted to a single @samp{$} at the same time as variable
122substitution is performed for single @samp{$}. Alternatively, quote the
3d853351
EZ
123whole file name with @samp{/:} (@pxref{Quoted File Names}). File names
124which begin with a literal @samp{~} should also be quoted with @samp{/:}.
6bf7aab6
DL
125
126@findex substitute-in-file-name
127 The Lisp function that performs the substitution is called
128@code{substitute-in-file-name}. The substitution is performed only on
129file names read as such using the minibuffer.
130
131 You can include non-ASCII characters in file names if you set the
132variable @code{file-name-coding-system} to a non-@code{nil} value.
133@xref{Specify Coding}.
134
135@node Visiting
136@section Visiting Files
137@cindex visiting files
138
139@c WideCommands
140@table @kbd
141@item C-x C-f
142Visit a file (@code{find-file}).
143@item C-x C-r
144Visit a file for viewing, without allowing changes to it
145(@code{find-file-read-only}).
146@item C-x C-v
147Visit a different file instead of the one visited last
148(@code{find-alternate-file}).
149@item C-x 4 f
150Visit a file, in another window (@code{find-file-other-window}). Don't
151alter what is displayed in the selected window.
152@item C-x 5 f
153Visit a file, in a new frame (@code{find-file-other-frame}). Don't
154alter what is displayed in the selected frame.
155@item M-x find-file-literally
156Visit a file with no conversion of the contents.
157@end table
158
159@cindex files, visiting and saving
6bf7aab6
DL
160@cindex saving files
161 @dfn{Visiting} a file means copying its contents into an Emacs buffer
162so you can edit them. Emacs makes a new buffer for each file that you
163visit. We say that this buffer is visiting the file that it was created
164to hold. Emacs constructs the buffer name from the file name by
165throwing away the directory, keeping just the name proper. For example,
166a file named @file{/usr/rms/emacs.tex} would get a buffer named
167@samp{emacs.tex}. If there is already a buffer with that name, a unique
168name is constructed by appending @samp{<2>}, @samp{<3>}, or so on, using
169the lowest number that makes a name that is not already in use.
170
171 Each window's mode line shows the name of the buffer that is being displayed
172in that window, so you can always tell what buffer you are editing.
173
174 The changes you make with editing commands are made in the Emacs
175buffer. They do not take effect in the file that you visited, or any
176place permanent, until you @dfn{save} the buffer. Saving the buffer
177means that Emacs writes the current contents of the buffer into its
178visited file. @xref{Saving}.
179
180@cindex modified (buffer)
181 If a buffer contains changes that have not been saved, we say the
182buffer is @dfn{modified}. This is important because it implies that
183some changes will be lost if the buffer is not saved. The mode line
184displays two stars near the left margin to indicate that the buffer is
185modified.
186
187@kindex C-x C-f
188@findex find-file
189 To visit a file, use the command @kbd{C-x C-f} (@code{find-file}). Follow
190the command with the name of the file you wish to visit, terminated by a
191@key{RET}.
192
193 The file name is read using the minibuffer (@pxref{Minibuffer}), with
194defaulting and completion in the standard manner (@pxref{File Names}).
195While in the minibuffer, you can abort @kbd{C-x C-f} by typing @kbd{C-g}.
196
5a43a93c
EZ
197@cindex file selection dialog
198 When Emacs is built with a suitable GUI toolkit, it pops up the
199standard File Selection dialog of that toolkit instead of prompting for
200the file name in the minibuffer. On Unix and GNU/Linux platforms, Emacs
201does that when built with LessTif and Motif toolkits; on MS-Windows, the
202GUI version does that by default.
203
6bf7aab6
DL
204 Your confirmation that @kbd{C-x C-f} has completed successfully is the
205appearance of new text on the screen and a new buffer name in the mode
206line. If the specified file does not exist and could not be created, or
207cannot be read, then you get an error, with an error message displayed
208in the echo area.
209
210 If you visit a file that is already in Emacs, @kbd{C-x C-f} does not make
211another copy. It selects the existing buffer containing that file.
212However, before doing so, it checks that the file itself has not changed
213since you visited or saved it last. If the file has changed, a warning
214message is printed. @xref{Interlocking,,Simultaneous Editing}.
215
216@cindex creating files
217 What if you want to create a new file? Just visit it. Emacs prints
218@samp{(New File)} in the echo area, but in other respects behaves as if
219you had visited an existing empty file. If you make any changes and
220save them, the file is created.
221
222 Emacs recognizes from the contents of a file which convention it uses
223to separate lines---newline (used on GNU/Linux and on Unix),
224carriage-return linefeed (used on Microsoft systems), or just
225carriage-return (used on the Macintosh)---and automatically converts the
226contents to the normal Emacs convention, which is that the newline
227character separates lines. This is a part of the general feature of
228coding system conversion (@pxref{Coding Systems}), and makes it possible
229to edit files imported from various different operating systems with
230equal convenience. If you change the text and save the file, Emacs
231performs the inverse conversion, changing newlines back into
232carriage-return linefeed or just carriage-return if appropriate.
233
234@vindex find-file-run-dired
235 If the file you specify is actually a directory, @kbd{C-x C-f} invokes
236Dired, the Emacs directory browser, so that you can ``edit'' the contents
237of the directory (@pxref{Dired}). Dired is a convenient way to delete,
238look at, or operate on the files in the directory. However, if the
239variable @code{find-file-run-dired} is @code{nil}, then it is an error
240to try to visit a directory.
241
1b6f26fb
EZ
242 Files which are actually collections of other files, or @dfn{file
243archives}, are visited in special modes which invoke a Dired-like
244environment to allow operations on archive members. @xref{File
245Archives}, for more about these features.
246
7ed32bd8
DL
247@cindex wildcard characters in file names
248@vindex find-file-wildcards
f02d86a3
RS
249 If the file name you specify contains shell-style wildcard
250characters, Emacs visits all the files that match it. Wildcards
251comprise @samp{?}, @samp{*} and @samp{[@dots{}]} sequences.
252@xref{Quoted File Names}, for how to visit a file whose name actually
253contains wildcard characters. You can disable the wildcard feature by
7ed32bd8 254customizing @code{find-file-wildcards}.
6bf7aab6
DL
255
256 If you visit a file that the operating system won't let you modify,
257Emacs makes the buffer read-only, so that you won't go ahead and make
258changes that you'll have trouble saving afterward. You can make the
259buffer writable with @kbd{C-x C-q} (@code{vc-toggle-read-only}).
260@xref{Misc Buffer}.
261
262@kindex C-x C-r
263@findex find-file-read-only
264 Occasionally you might want to visit a file as read-only in order to
265protect yourself from entering changes accidentally; do so by visiting
266the file with the command @kbd{C-x C-r} (@code{find-file-read-only}).
267
268@kindex C-x C-v
269@findex find-alternate-file
270 If you visit a nonexistent file unintentionally (because you typed the
271wrong file name), use the @kbd{C-x C-v} command
272(@code{find-alternate-file}) to visit the file you really wanted.
273@kbd{C-x C-v} is similar to @kbd{C-x C-f}, but it kills the current
274buffer (after first offering to save it if it is modified). When it
275reads the file name to visit, it inserts the entire default file name in
276the buffer, with point just after the directory part; this is convenient
277if you made a slight error in typing the name.
278
279 If you find a file which exists but cannot be read, @kbd{C-x C-f}
280signals an error.
281
282@kindex C-x 4 f
283@findex find-file-other-window
284 @kbd{C-x 4 f} (@code{find-file-other-window}) is like @kbd{C-x C-f}
285except that the buffer containing the specified file is selected in another
286window. The window that was selected before @kbd{C-x 4 f} continues to
287show the same buffer it was already showing. If this command is used when
288only one window is being displayed, that window is split in two, with one
289window showing the same buffer as before, and the other one showing the
290newly requested file. @xref{Windows}.
291
292@kindex C-x 5 f
293@findex find-file-other-frame
294 @kbd{C-x 5 f} (@code{find-file-other-frame}) is similar, but opens a
295new frame, or makes visible any existing frame showing the file you
296seek. This feature is available only when you are using a window
297system. @xref{Frames}.
298
299@findex find-file-literally
f02d86a3 300 If you wish to edit a file as a sequence of ASCII characters with no special
6bf7aab6
DL
301encoding or conversion, use the @kbd{M-x find-file-literally} command.
302It visits a file, like @kbd{C-x C-f}, but does not do format conversion
303(@pxref{Formatted Text}), character code conversion (@pxref{Coding
4104194e
GM
304Systems}), or automatic uncompression (@pxref{Compressed Files}), and
305does not add a final newline because of @code{require-final-newline}.
6bf7aab6
DL
306If you already have visited the same file in the usual (non-literal)
307manner, this command asks you whether to visit it literally instead.
308
309@vindex find-file-hooks
310@vindex find-file-not-found-hooks
311 Two special hook variables allow extensions to modify the operation of
312visiting files. Visiting a file that does not exist runs the functions
313in the list @code{find-file-not-found-hooks}; this variable holds a list
314of functions, and the functions are called one by one (with no
315arguments) until one of them returns non-@code{nil}. This is not a
316normal hook, and the name ends in @samp{-hooks} rather than @samp{-hook}
317to indicate that fact.
318
319 Any visiting of a file, whether extant or not, expects
320@code{find-file-hooks} to contain a list of functions, and calls them
321all, one by one, with no arguments. This variable is really a normal
322hook, but it has an abnormal name for historical compatibility. In the
323case of a nonexistent file, the @code{find-file-not-found-hooks} are run
324first. @xref{Hooks}.
325
326 There are several ways to specify automatically the major mode for
327editing the file (@pxref{Choosing Modes}), and to specify local
328variables defined for that file (@pxref{File Variables}).
329
330@node Saving
331@section Saving Files
332
333 @dfn{Saving} a buffer in Emacs means writing its contents back into the file
334that was visited in the buffer.
335
336@table @kbd
337@item C-x C-s
338Save the current buffer in its visited file (@code{save-buffer}).
339@item C-x s
340Save any or all buffers in their visited files (@code{save-some-buffers}).
341@item M-~
342Forget that the current buffer has been changed (@code{not-modified}).
db8eeecd 343With prefix argument (@kbd{C-u}), mark the current buffer as changed.
6bf7aab6
DL
344@item C-x C-w
345Save the current buffer in a specified file (@code{write-file}).
346@item M-x set-visited-file-name
f65d66f8 347Change the file name under which the current buffer will be saved.
6bf7aab6
DL
348@end table
349
350@kindex C-x C-s
351@findex save-buffer
352 When you wish to save the file and make your changes permanent, type
353@kbd{C-x C-s} (@code{save-buffer}). After saving is finished, @kbd{C-x C-s}
354displays a message like this:
355
356@example
357Wrote /u/rms/gnu/gnu.tasks
358@end example
359
360@noindent
361If the selected buffer is not modified (no changes have been made in it
362since the buffer was created or last saved), saving is not really done,
363because it would have no effect. Instead, @kbd{C-x C-s} displays a message
364like this in the echo area:
365
366@example
367(No changes need to be saved)
368@end example
369
370@kindex C-x s
371@findex save-some-buffers
372 The command @kbd{C-x s} (@code{save-some-buffers}) offers to save any
373or all modified buffers. It asks you what to do with each buffer. The
374possible responses are analogous to those of @code{query-replace}:
375
376@table @kbd
377@item y
378Save this buffer and ask about the rest of the buffers.
379@item n
380Don't save this buffer, but ask about the rest of the buffers.
381@item !
382Save this buffer and all the rest with no more questions.
383@c following generates acceptable underfull hbox
384@item @key{RET}
385Terminate @code{save-some-buffers} without any more saving.
386@item .
387Save this buffer, then exit @code{save-some-buffers} without even asking
388about other buffers.
389@item C-r
390View the buffer that you are currently being asked about. When you exit
391View mode, you get back to @code{save-some-buffers}, which asks the
392question again.
393@item C-h
394Display a help message about these options.
395@end table
396
397 @kbd{C-x C-c}, the key sequence to exit Emacs, invokes
398@code{save-some-buffers} and therefore asks the same questions.
399
400@kindex M-~
401@findex not-modified
402 If you have changed a buffer but you do not want to save the changes,
403you should take some action to prevent it. Otherwise, each time you use
404@kbd{C-x s} or @kbd{C-x C-c}, you are liable to save this buffer by
405mistake. One thing you can do is type @kbd{M-~} (@code{not-modified}),
406which clears out the indication that the buffer is modified. If you do
407this, none of the save commands will believe that the buffer needs to be
408saved. (@samp{~} is often used as a mathematical symbol for `not'; thus
409@kbd{M-~} is `not', metafied.) You could also use
410@code{set-visited-file-name} (see below) to mark the buffer as visiting
411a different file name, one which is not in use for anything important.
412Alternatively, you can cancel all the changes made since the file was
413visited or saved, by reading the text from the file again. This is
414called @dfn{reverting}. @xref{Reverting}. You could also undo all the
415changes by repeating the undo command @kbd{C-x u} until you have undone
416all the changes; but reverting is easier.
417
418@findex set-visited-file-name
419 @kbd{M-x set-visited-file-name} alters the name of the file that the
420current buffer is visiting. It reads the new file name using the
421minibuffer. Then it specifies the visited file name and changes the
422buffer name correspondingly (as long as the new name is not in use).
423@code{set-visited-file-name} does not save the buffer in the newly
424visited file; it just alters the records inside Emacs in case you do
425save later. It also marks the buffer as ``modified'' so that @kbd{C-x
426C-s} in that buffer @emph{will} save.
427
428@kindex C-x C-w
429@findex write-file
430 If you wish to mark the buffer as visiting a different file and save it
431right away, use @kbd{C-x C-w} (@code{write-file}). It is precisely
432equivalent to @code{set-visited-file-name} followed by @kbd{C-x C-s}.
433@kbd{C-x C-s} used on a buffer that is not visiting a file has the
434same effect as @kbd{C-x C-w}; that is, it reads a file name, marks the
435buffer as visiting that file, and saves it there. The default file name in
436a buffer that is not visiting a file is made by combining the buffer name
437with the buffer's default directory.
438
439 If the new file name implies a major mode, then @kbd{C-x C-w} switches
440to that major mode, in most cases. The command
441@code{set-visited-file-name} also does this. @xref{Choosing Modes}.
442
443 If Emacs is about to save a file and sees that the date of the latest
444version on disk does not match what Emacs last read or wrote, Emacs
445notifies you of this fact, because it probably indicates a problem caused
446by simultaneous editing and requires your immediate attention.
447@xref{Interlocking,, Simultaneous Editing}.
448
449@vindex require-final-newline
ce6e98e3
EZ
450 If the value of the variable @code{require-final-newline} is @code{t},
451Emacs silently puts a newline at the end of any file that doesn't
452already end in one, every time a file is saved or written. If the value
453is @code{nil}, Emacs leaves the end of the file unchanged; if it's
454neither @code{nil} nor @code{t}, Emacs asks you whether to add a
455newline. The default is @code{nil}.
6bf7aab6
DL
456
457@menu
458* Backup:: How Emacs saves the old version of your file.
459* Interlocking:: How Emacs protects against simultaneous editing
460 of one file by two users.
f02d86a3 461* Shadowing: File Shadowing.
2684ed46 462 Copying files to "shadows" automatically.
9575b9ae 463* Time Stamps:: Emacs can update time stamps on saved files.
6bf7aab6
DL
464@end menu
465
466@node Backup
467@subsection Backup Files
468@cindex backup file
469@vindex make-backup-files
470@vindex vc-make-backup-files
6bf7aab6
DL
471
472 On most operating systems, rewriting a file automatically destroys all
473record of what the file used to contain. Thus, saving a file from Emacs
474throws away the old contents of the file---or it would, except that
475Emacs carefully copies the old contents to another file, called the
476@dfn{backup} file, before actually saving.
477
478 For most files, the variable @code{make-backup-files} determines
479whether to make backup files. On most operating systems, its default
480value is @code{t}, so that Emacs does write backup files.
481
482 For files managed by a version control system (@pxref{Version
483Control}), the variable @code{vc-make-backup-files} determines whether
484to make backup files. By default, it is @code{nil}, since backup files
485are redundant when you store all the previous versions in a version
ad63cf1d 486control system. @xref{General VC Options}.
6bf7aab6 487
9a98ef18
DL
488@vindex backup-enable-predicate
489@vindex temporary-file-directory
490@vindex small-temporary-file-directory
6bf7aab6 491 The default value of the @code{backup-enable-predicate} variable
f02d86a3
RS
492prevents backup files being written for files in the directories used
493for temporary files, specified by @code{temporary-file-directory} or
494@code{small-temporary-file-directory}.
6bf7aab6
DL
495
496 At your option, Emacs can keep either a single backup file or a series of
497numbered backup files for each file that you edit.
498
499 Emacs makes a backup for a file only the first time the file is saved
500from one buffer. No matter how many times you save a file, its backup file
501continues to contain the contents from before the file was visited.
502Normally this means that the backup file contains the contents from before
503the current editing session; however, if you kill the buffer and then visit
504the file again, a new backup file will be made by the next save.
505
506 You can also explicitly request making another backup file from a
507buffer even though it has already been saved at least once. If you save
508the buffer with @kbd{C-u C-x C-s}, the version thus saved will be made
509into a backup file if you save the buffer again. @kbd{C-u C-u C-x C-s}
510saves the buffer, but first makes the previous file contents into a new
511backup file. @kbd{C-u C-u C-u C-x C-s} does both things: it makes a
512backup from the previous contents, and arranges to make another from the
513newly saved contents, if you save again.
514
515@menu
516* Names: Backup Names. How backup files are named;
517 choosing single or numbered backup files.
518* Deletion: Backup Deletion. Emacs deletes excess numbered backups.
519* Copying: Backup Copying. Backups can be made by copying or renaming.
520@end menu
521
522@node Backup Names
523@subsubsection Single or Numbered Backups
524
525 If you choose to have a single backup file (this is the default),
9a98ef18 526the backup file's name is normally constructed by appending @samp{~} to the
6bf7aab6
DL
527file name being edited; thus, the backup file for @file{eval.c} would
528be @file{eval.c~}.
529
9a98ef18
DL
530@vindex make-backup-file-name-function
531@vindex backup-directory-alist
532 You can change this behaviour by defining the variable
533@code{make-backup-file-name-function} to a suitable function.
534Alternatively you can customize the variable
f02d86a3
RS
535@var{backup-directory-alist} to specify that files matching certain
536patterns should be backed up in specific directories.
537
538 A typical use is to add an element @code{("." . @var{dir})} to make
539all backups in the directory with absolute name @var{dir}; Emacs
540modifies the backup file names to avoid clashes between files with the
541same names originating in different directories. Alternatively,
542adding, say, @code{("." ".~")} would make backups in the invisible
543subdirectory @file{.~} of the original file's directory. Emacs
544creates the directory, if necessary, to make the backup.
545
546 If access control stops Emacs from writing backup files under the usual
547names, it writes the backup file as @file{%backup%~} in your home
548directory. Only one such file can exist, so only the most recently
549made such backup is available.
9a98ef18 550
6bf7aab6 551 If you choose to have a series of numbered backup files, backup file
f02d86a3
RS
552names contain @samp{.~}, the number, and another @samp{~} after the
553original file name. Thus, the backup files of @file{eval.c} would be
554called @file{eval.c.~1~}, @file{eval.c.~2~}, and so on, all the way
555through names like @file{eval.c.~259~} and beyond. The variable
556@code{backup-directory-alist} applies to numbered backups just as
557usual.
6bf7aab6
DL
558
559@vindex version-control
560 The choice of single backup or numbered backups is controlled by the
561variable @code{version-control}. Its possible values are
562
563@table @code
564@item t
565Make numbered backups.
566@item nil
567Make numbered backups for files that have numbered backups already.
568Otherwise, make single backups.
569@item never
342a6e86 570Never make numbered backups; always make single backups.
6bf7aab6
DL
571@end table
572
573@noindent
574You can set @code{version-control} locally in an individual buffer to
575control the making of backups for that buffer's file. For example,
576Rmail mode locally sets @code{version-control} to @code{never} to make sure
577that there is only one backup for an Rmail file. @xref{Locals}.
578
60a96371
GM
579@cindex @env{VERSION_CONTROL} environment variable
580 If you set the environment variable @env{VERSION_CONTROL}, to tell
6bf7aab6
DL
581various GNU utilities what to do with backup files, Emacs also obeys the
582environment variable by setting the Lisp variable @code{version-control}
583accordingly at startup. If the environment variable's value is @samp{t}
584or @samp{numbered}, then @code{version-control} becomes @code{t}; if the
585value is @samp{nil} or @samp{existing}, then @code{version-control}
586becomes @code{nil}; if it is @samp{never} or @samp{simple}, then
587@code{version-control} becomes @code{never}.
588
589@node Backup Deletion
590@subsubsection Automatic Deletion of Backups
591
592 To prevent unlimited consumption of disk space, Emacs can delete numbered
593backup versions automatically. Generally Emacs keeps the first few backups
594and the latest few backups, deleting any in between. This happens every
595time a new backup is made.
596
597@vindex kept-old-versions
598@vindex kept-new-versions
599 The two variables @code{kept-old-versions} and
600@code{kept-new-versions} control this deletion. Their values are,
601respectively the number of oldest (lowest-numbered) backups to keep and
602the number of newest (highest-numbered) ones to keep, each time a new
603backup is made. Recall that these values are used just after a new
604backup version is made; that newly made backup is included in the count
605in @code{kept-new-versions}. By default, both variables are 2.
606
607@vindex delete-old-versions
608 If @code{delete-old-versions} is non-@code{nil}, the excess
609middle versions are deleted without a murmur. If it is @code{nil}, the
610default, then you are asked whether the excess middle versions should
611really be deleted.
612
613 Dired's @kbd{.} (Period) command can also be used to delete old versions.
614@xref{Dired Deletion}.
615
616@node Backup Copying
617@subsubsection Copying vs.@: Renaming
618
619 Backup files can be made by copying the old file or by renaming it. This
620makes a difference when the old file has multiple names. If the old file
621is renamed into the backup file, then the alternate names become names for
622the backup file. If the old file is copied instead, then the alternate
623names remain names for the file that you are editing, and the contents
624accessed by those names will be the new contents.
625
626 The method of making a backup file may also affect the file's owner
627and group. If copying is used, these do not change. If renaming is used,
628you become the file's owner, and the file's group becomes the default
629(different operating systems have different defaults for the group).
630
631 Having the owner change is usually a good idea, because then the owner
632always shows who last edited the file. Also, the owners of the backups
633show who produced those versions. Occasionally there is a file whose
634owner should not change; it is a good idea for such files to contain
635local variable lists to set @code{backup-by-copying-when-mismatch}
636locally (@pxref{File Variables}).
637
638@vindex backup-by-copying
639@vindex backup-by-copying-when-linked
640@vindex backup-by-copying-when-mismatch
3c8b8db0
EZ
641@vindex backup-by-copying-when-privileged-mismatch
642@cindex file ownership, and backup
f02d86a3 643@cindex backup, and user-id
3c8b8db0 644 The choice of renaming or copying is controlled by four variables.
6bf7aab6
DL
645Renaming is the default choice. If the variable
646@code{backup-by-copying} is non-@code{nil}, copying is used. Otherwise,
647if the variable @code{backup-by-copying-when-linked} is non-@code{nil},
648then copying is used for files that have multiple names, but renaming
649may still be used when the file being edited has only one name. If the
650variable @code{backup-by-copying-when-mismatch} is non-@code{nil}, then
651copying is used if renaming would cause the file's owner or group to
652change. @code{backup-by-copying-when-mismatch} is @code{t} by default
3c8b8db0
EZ
653if you start Emacs as the superuser. The fourth variable,
654@code{backup-by-copying-when-privileged-mismatch}, gives the highest
f02d86a3
RS
655numeric user-id for which @code{backup-by-copying-when-mismatch} will be
656forced on. This is useful when low-numbered user-id are assigned to
3c8b8db0
EZ
657special system users, such as @code{root}, @code{bin}, @code{daemon},
658etc., which must maintain ownership of files.
6bf7aab6
DL
659
660 When a file is managed with a version control system (@pxref{Version
661Control}), Emacs does not normally make backups in the usual way for
662that file. But check-in and check-out are similar in some ways to
663making backups. One unfortunate similarity is that these operations
664typically break hard links, disconnecting the file name you visited from
665any alternate names for the same file. This has nothing to do with
666Emacs---the version control system does it.
667
668@node Interlocking
669@subsection Protection against Simultaneous Editing
670
671@cindex file dates
672@cindex simultaneous editing
673 Simultaneous editing occurs when two users visit the same file, both
674make changes, and then both save them. If nobody were informed that
675this was happening, whichever user saved first would later find that his
676changes were lost.
677
678 On some systems, Emacs notices immediately when the second user starts
679to change the file, and issues an immediate warning. On all systems,
680Emacs checks when you save the file, and warns if you are about to
681overwrite another user's changes. You can prevent loss of the other
682user's work by taking the proper corrective action instead of saving the
683file.
684
685@findex ask-user-about-lock
686@cindex locking files
687 When you make the first modification in an Emacs buffer that is
688visiting a file, Emacs records that the file is @dfn{locked} by you.
689(It does this by creating a symbolic link in the same directory with a
690different name.) Emacs removes the lock when you save the changes. The
691idea is that the file is locked whenever an Emacs buffer visiting it has
692unsaved changes.
693
694@cindex collision
695 If you begin to modify the buffer while the visited file is locked by
696someone else, this constitutes a @dfn{collision}. When Emacs detects a
697collision, it asks you what to do, by calling the Lisp function
698@code{ask-user-about-lock}. You can redefine this function for the sake
699of customization. The standard definition of this function asks you a
700question and accepts three possible answers:
701
702@table @kbd
703@item s
704Steal the lock. Whoever was already changing the file loses the lock,
705and you gain the lock.
706@item p
707Proceed. Go ahead and edit the file despite its being locked by someone else.
708@item q
709Quit. This causes an error (@code{file-locked}) and the modification you
710were trying to make in the buffer does not actually take place.
711@end table
712
713 Note that locking works on the basis of a file name; if a file has
714multiple names, Emacs does not realize that the two names are the same file
715and cannot prevent two users from editing it simultaneously under different
716names. However, basing locking on names means that Emacs can interlock the
717editing of new files that will not really exist until they are saved.
718
719 Some systems are not configured to allow Emacs to make locks, and
720there are cases where lock files cannot be written. In these cases,
721Emacs cannot detect trouble in advance, but it still can detect the
722collision when you try to save a file and overwrite someone else's
723changes.
724
725 If Emacs or the operating system crashes, this may leave behind lock
066502ab 726files which are stale, so you may occasionally get warnings about
6bf7aab6
DL
727spurious collisions. When you determine that the collision is spurious,
728just use @kbd{p} to tell Emacs to go ahead anyway.
729
730 Every time Emacs saves a buffer, it first checks the last-modification
731date of the existing file on disk to verify that it has not changed since the
732file was last visited or saved. If the date does not match, it implies
733that changes were made in the file in some other way, and these changes are
734about to be lost if Emacs actually does save. To prevent this, Emacs
735prints a warning message and asks for confirmation before saving.
736Occasionally you will know why the file was changed and know that it does
737not matter; then you can answer @kbd{yes} and proceed. Otherwise, you should
738cancel the save with @kbd{C-g} and investigate the situation.
739
740 The first thing you should do when notified that simultaneous editing
741has already taken place is to list the directory with @kbd{C-u C-x C-d}
742(@pxref{Directories}). This shows the file's current author. You
743should attempt to contact him to warn him not to continue editing.
744Often the next step is to save the contents of your Emacs buffer under a
745different name, and use @code{diff} to compare the two files.@refill
746
fa474484
DL
747@node File Shadowing
748@subsection Shadowing Files
749@cindex shadow files
750@cindex file shadows
751
752@table @kbd
753@item M-x shadow-initialize
754Set up file shadowing.
fa474484
DL
755@item M-x shadow-define-literal-group
756Declare a single file to be shared between sites.
f02d86a3
RS
757@item M-x shadow-define-regexp-group
758Make all files that match each of a group of files be shared between hosts.
759@item M-x shadow-define-cluster @key{RET} @var{name} @key{RET}
760Define a shadow file cluster @var{name}.
fa474484
DL
761@item M-x shadow-copy-files
762Copy all pending shadow files.
f02d86a3
RS
763@item M-x shadow-cancel
764Cancel the instruction to shadow some files.
fa474484
DL
765@end table
766
f02d86a3
RS
767You can arrange to keep identical @dfn{shadow} copies of certain files
768in more than one place---possibly on different machines. To do this,
769first you must set up a @dfn{shadow file group}, which is a set of
770identically-named files shared between a list of sites. The file
771group is permanent and applies to further Emacs sessions as well as
772the current one. Once the group is set up, every time you exit Emacs,
773it will copy the file you edited to the other files in its group. You
774can also do the copying without exiting Emacs, by typing @kbd{M-x
775shadow-copy-files}.
776
777To set up a file group, use @kbd{M-x shadow-define-literal-group} or
778@kbd{M-x shadow-define-regexp-group}. See their documentation strings
779for further information.
780
781Before copying a file to its shadows, Emacs asks for confirmation.
782You can answer ``no'' to bypass copying of this file, this time. If
783you want to cancel the shadowing permanently for a certain file, use
784@kbd{M-x shadow-cancel} to eliminate or change the shadow file group.
785
786A @dfn{shadow cluster} is a group of hosts that share directories, so
787that copying to or from one of them is sufficient to update the file
788on all of them. Each shadow cluster has a name, and specifies the
789network address of a primary host (the one we copy files to), and a
790regular expression that matches the hostnames of all the other hosts
791in the cluster. You can define a shadow cluster with @kbd{M-x
792shadow-define-cluster}.
fa474484 793
9575b9ae
DL
794@node Time Stamps
795@subsection Updating Time Stamps Automatically
796@findex time-stamp
797@cindex time stamps
798@cindex modification dates
940f14b4 799@cindex locale, date format
9575b9ae 800
f02d86a3
RS
801You can arrange put a time stamp in a file, so that it will be updated
802automatically each time you edit and save the file. The time stamp
803has to be in the first eight lines of the file, and you should
804insert it like this:
805
9575b9ae
DL
806@example
807Time-stamp: <>
808@end example
f02d86a3 809
9575b9ae 810@noindent
f02d86a3
RS
811or like this:
812
9575b9ae
DL
813@example
814Time-stamp: ""
815@end example
9575b9ae 816
f02d86a3
RS
817 Then add the hook function @code{time-stamp} to the hook
818@code{write-file-hooks}; that hook function will automatically update
819the time stamp, inserting the current date and time when you save the
820file. You can also use the command @kbd{M-x time-stamp} to update the
821time stamp manually. For other customizations, see the Custom group
822@code{time-stamp}. Note that non-numeric fields in the time stamp are
823formatted according to your locale setting (@pxref{Environment}).
9575b9ae 824
6bf7aab6
DL
825@node Reverting
826@section Reverting a Buffer
827@findex revert-buffer
828@cindex drastic changes
829
830 If you have made extensive changes to a file and then change your mind
831about them, you can get rid of them by reading in the previous version
832of the file. To do this, use @kbd{M-x revert-buffer}, which operates on
833the current buffer. Since reverting a buffer unintentionally could lose
834a lot of work, you must confirm this command with @kbd{yes}.
835
836 @code{revert-buffer} keeps point at the same distance (measured in
837characters) from the beginning of the file. If the file was edited only
838slightly, you will be at approximately the same piece of text after
839reverting as before. If you have made drastic changes, the same value of
840point in the old file may address a totally different piece of text.
841
842 Reverting marks the buffer as ``not modified'' until another change is
843made.
844
845 Some kinds of buffers whose contents reflect data bases other than files,
846such as Dired buffers, can also be reverted. For them, reverting means
847recalculating their contents from the appropriate data base. Buffers
848created explicitly with @kbd{C-x b} cannot be reverted; @code{revert-buffer}
849reports an error when asked to do so.
850
851@vindex revert-without-query
852 When you edit a file that changes automatically and frequently---for
853example, a log of output from a process that continues to run---it may be
854useful for Emacs to revert the file without querying you, whenever you
855visit the file again with @kbd{C-x C-f}.
856
857 To request this behavior, set the variable @code{revert-without-query}
858to a list of regular expressions. When a file name matches one of these
859regular expressions, @code{find-file} and @code{revert-buffer} will
860revert it automatically if it has changed---provided the buffer itself
861is not modified. (If you have edited the text, it would be wrong to
862discard your changes.)
863
864@node Auto Save
865@section Auto-Saving: Protection Against Disasters
866@cindex Auto Save mode
867@cindex mode, Auto Save
868@cindex crashes
869
870 Emacs saves all the visited files from time to time (based on counting
871your keystrokes) without being asked. This is called @dfn{auto-saving}.
872It prevents you from losing more than a limited amount of work if the
873system crashes.
874
875 When Emacs determines that it is time for auto-saving, each buffer is
876considered, and is auto-saved if auto-saving is turned on for it and it
877has been changed since the last time it was auto-saved. The message
878@samp{Auto-saving...} is displayed in the echo area during auto-saving,
879if any files are actually auto-saved. Errors occurring during
880auto-saving are caught so that they do not interfere with the execution
881of commands you have been typing.
882
883@menu
884* Files: Auto Save Files. The file where auto-saved changes are
885 actually made until you save the file.
886* Control: Auto Save Control. Controlling when and how often to auto-save.
887* Recover:: Recovering text from auto-save files.
888@end menu
889
890@node Auto Save Files
891@subsection Auto-Save Files
892
893 Auto-saving does not normally save in the files that you visited, because
894it can be very undesirable to save a program that is in an inconsistent
895state when you have made half of a planned change. Instead, auto-saving
896is done in a different file called the @dfn{auto-save file}, and the
897visited file is changed only when you request saving explicitly (such as
898with @kbd{C-x C-s}).
899
900 Normally, the auto-save file name is made by appending @samp{#} to the
901front and rear of the visited file name. Thus, a buffer visiting file
902@file{foo.c} is auto-saved in a file @file{#foo.c#}. Most buffers that
903are not visiting files are auto-saved only if you request it explicitly;
904when they are auto-saved, the auto-save file name is made by appending
905@samp{#%} to the front and @samp{#} to the rear of buffer name. For
906example, the @samp{*mail*} buffer in which you compose messages to be
907sent is auto-saved in a file named @file{#%*mail*#}. Auto-save file
908names are made this way unless you reprogram parts of Emacs to do
909something different (the functions @code{make-auto-save-file-name} and
910@code{auto-save-file-name-p}). The file name to be used for auto-saving
911in a buffer is calculated when auto-saving is turned on in that buffer.
912
913 When you delete a substantial part of the text in a large buffer, auto
914save turns off temporarily in that buffer. This is because if you
915deleted the text unintentionally, you might find the auto-save file more
916useful if it contains the deleted text. To reenable auto-saving after
917this happens, save the buffer with @kbd{C-x C-s}, or use @kbd{C-u 1 M-x
918auto-save}.
919
920@vindex auto-save-visited-file-name
921 If you want auto-saving to be done in the visited file, set the variable
922@code{auto-save-visited-file-name} to be non-@code{nil}. In this mode,
923there is really no difference between auto-saving and explicit saving.
924
925@vindex delete-auto-save-files
926 A buffer's auto-save file is deleted when you save the buffer in its
927visited file. To inhibit this, set the variable @code{delete-auto-save-files}
928to @code{nil}. Changing the visited file name with @kbd{C-x C-w} or
929@code{set-visited-file-name} renames any auto-save file to go with
930the new visited name.
931
932@node Auto Save Control
933@subsection Controlling Auto-Saving
934
935@vindex auto-save-default
936@findex auto-save-mode
937 Each time you visit a file, auto-saving is turned on for that file's
938buffer if the variable @code{auto-save-default} is non-@code{nil} (but not
939in batch mode; @pxref{Entering Emacs}). The default for this variable is
940@code{t}, so auto-saving is the usual practice for file-visiting buffers.
941Auto-saving can be turned on or off for any existing buffer with the
942command @kbd{M-x auto-save-mode}. Like other minor mode commands, @kbd{M-x
943auto-save-mode} turns auto-saving on with a positive argument, off with a
944zero or negative argument; with no argument, it toggles.
945
946@vindex auto-save-interval
947 Emacs does auto-saving periodically based on counting how many characters
948you have typed since the last time auto-saving was done. The variable
949@code{auto-save-interval} specifies how many characters there are between
950auto-saves. By default, it is 300.
951
952@vindex auto-save-timeout
953 Auto-saving also takes place when you stop typing for a while. The
954variable @code{auto-save-timeout} says how many seconds Emacs should
955wait before it does an auto save (and perhaps also a garbage
956collection). (The actual time period is longer if the current buffer is
957long; this is a heuristic which aims to keep out of your way when you
958are editing long buffers, in which auto-save takes an appreciable amount
959of time.) Auto-saving during idle periods accomplishes two things:
960first, it makes sure all your work is saved if you go away from the
961terminal for a while; second, it may avoid some auto-saving while you
962are actually typing.
963
964 Emacs also does auto-saving whenever it gets a fatal error. This
965includes killing the Emacs job with a shell command such as @samp{kill
966%emacs}, or disconnecting a phone line or network connection.
967
968@findex do-auto-save
969 You can request an auto-save explicitly with the command @kbd{M-x
970do-auto-save}.
971
972@node Recover
973@subsection Recovering Data from Auto-Saves
974
975@findex recover-file
976 You can use the contents of an auto-save file to recover from a loss
977of data with the command @kbd{M-x recover-file @key{RET} @var{file}
978@key{RET}}. This visits @var{file} and then (after your confirmation)
979restores the contents from its auto-save file @file{#@var{file}#}.
980You can then save with @kbd{C-x C-s} to put the recovered text into
981@var{file} itself. For example, to recover file @file{foo.c} from its
982auto-save file @file{#foo.c#}, do:@refill
983
984@example
985M-x recover-file @key{RET} foo.c @key{RET}
986yes @key{RET}
987C-x C-s
988@end example
989
990 Before asking for confirmation, @kbd{M-x recover-file} displays a
991directory listing describing the specified file and the auto-save file,
992so you can compare their sizes and dates. If the auto-save file
993is older, @kbd{M-x recover-file} does not offer to read it.
994
995@findex recover-session
996 If Emacs or the computer crashes, you can recover all the files you
997were editing from their auto save files with the command @kbd{M-x
998recover-session}. This first shows you a list of recorded interrupted
999sessions. Move point to the one you choose, and type @kbd{C-c C-c}.
1000
1001 Then @code{recover-session} asks about each of the files that were
1002being edited during that session, asking whether to recover that file.
1003If you answer @kbd{y}, it calls @code{recover-file}, which works in its
1004normal fashion. It shows the dates of the original file and its
1005auto-save file, and asks once again whether to recover that file.
1006
1007 When @code{recover-session} is done, the files you've chosen to
1008recover are present in Emacs buffers. You should then save them. Only
1009this---saving them---updates the files themselves.
1010
1011@vindex auto-save-list-file-prefix
f02d86a3 1012 Emacs records interrupted sessions for later recovery in files named
fa474484 1013@file{~/.emacs.d/auto-save-list/.saves-@var{pid}-@var{hostname}}. The
826f3788 1014@samp{~/.emacs.d/auto-save-list/.saves-} portion of these names comes
f02d86a3
RS
1015from the value of @code{auto-save-list-file-prefix}. You can record
1016sessions in a different place by customizing that variable. If you
1017set @code{auto-save-list-file-prefix} to @code{nil} in your
1018@file{.emacs} file, sessions are not recorded for recovery.
6bf7aab6
DL
1019
1020@node File Aliases
1021@section File Name Aliases
1022
1023 Symbolic links and hard links both make it possible for several file
1024names to refer to the same file. Hard links are alternate names that
1025refer directly to the file; all the names are equally valid, and no one
1026of them is preferred. By contrast, a symbolic link is a kind of defined
1027alias: when @file{foo} is a symbolic link to @file{bar}, you can use
1028either name to refer to the file, but @file{bar} is the real name, while
1029@file{foo} is just an alias. More complex cases occur when symbolic
1030links point to directories.
1031
1032 If you visit two names for the same file, normally Emacs makes
1033two different buffers, but it warns you about the situation.
1034
4295d0b2 1035@vindex find-file-existing-other-name
f02d86a3
RS
1036 Normally, if you visit a file which Emacs is already visiting under
1037a different name, Emacs displays a message in the echo area and uses
1038the existing buffer visiting that file. This can happen on systems
1039that support symbolic links, or if you use a long file name on a
1040system that truncates long file names. You can disable this feature
1041by setting the variable @code{find-file-existing-other-name} to
1042@code{nil}. Then if you visit the same file under two different names,
1043you get a separate buffer for each file name.
6bf7aab6
DL
1044
1045@vindex find-file-visit-truename
1046@cindex truenames of files
1047@cindex file truenames
1048 If the variable @code{find-file-visit-truename} is non-@code{nil},
1049then the file name recorded for a buffer is the file's @dfn{truename}
1050(made by replacing all symbolic links with their target names), rather
1051than the name you specify. Setting @code{find-file-visit-truename} also
1052implies the effect of @code{find-file-existing-other-name}.
1053
1054@node Version Control
1055@section Version Control
1056@cindex version control
1057
1058 @dfn{Version control systems} are packages that can record multiple
1059versions of a source file, usually storing the unchanged parts of the
1060file just once. Version control systems also record history information
1061such as the creation time of each version, who created it, and a
1062description of what was changed in that version.
1063
ad63cf1d
AS
1064 The Emacs version control interface is called VC. It allows you to
1065use various version control systems from within
1066Emacs---currently, it supports RCS, CVS, and SCCS. The GNU
f02d86a3
RS
1067project recommends RCS and CVS, which are free software and available
1068from the Free Software Foundation. We also have free software to
1069replace SCCS, known as CSSC; if you are using SCCS and don't want to
1070make the incompatible change to RCS or CVS, you can switch to CSSC.
6bf7aab6
DL
1071
1072@menu
1073* Introduction to VC:: How version control works in general.
1074* VC Mode Line:: How the mode line shows version control status.
1075* Basic VC Editing:: How to edit a file under version control.
1076* Old Versions:: Examining and comparing old versions.
1077* Secondary VC Commands:: The commands used a little less frequently.
1078* Branches:: Multiple lines of development.
ad63cf1d 1079* Remote Repositories:: Efficient access to remote CVS servers.
6bf7aab6
DL
1080* Snapshots:: Sets of file versions treated as a unit.
1081* Miscellaneous VC:: Various other commands and features of VC.
1082* Customizing VC:: Variables that change VC's behavior.
1083@end menu
1084
1085@node Introduction to VC
1086@subsection Introduction to Version Control
1087
1088 VC allows you to use a version control system from within Emacs,
1089integrating the version control operations smoothly with editing. VC
1090provides a uniform interface to version control, so that regardless of
1091which version control system is in use, you can use it the same way.
1092
1093 This section provides a general overview of version control, and
1094describes the version control systems that VC supports. You can skip
1095this section if you are already familiar with the version control system
1096you want to use.
1097
1098@menu
1099* Version Systems:: Supported version control back-end systems.
1100* VC Concepts:: Words and concepts related to version control.
1101@end menu
1102
1103@node Version Systems
1104@subsubsection Supported Version Control Systems
1105
1106@cindex RCS
1107@cindex back end (version control)
1108 VC currently works with three different version control systems or
1109``back ends'': RCS, CVS, and SCCS.
1110
1111 RCS is a free version control system that is available from the Free
1112Software Foundation. It is perhaps the most mature of the supported
1113back ends, and the VC commands are conceptually closest to RCS. Almost
1114everything you can do with RCS can be done through VC.
1115
1116@cindex CVS
1117 CVS is built on top of RCS, and extends the features of RCS, allowing
1118for more sophisticated release management, and concurrent multi-user
1119development. VC supports basic editing operations under CVS, but for
1120some less common tasks you still need to call CVS from the command line.
1121Note also that before using CVS you must set up a repository, which is a
1122subject too complex to treat here.
1123
1124@cindex SCCS
1125 SCCS is a proprietary but widely used version control system. In
1126terms of capabilities, it is the weakest of the three that VC
1127supports. VC compensates for certain features missing in SCCS
1128(snapshots, for example) by implementing them itself, but some other VC
1129features, such as multiple branches, are not available with SCCS. You
1130should use SCCS only if for some reason you cannot use RCS.
1131
1132@node VC Concepts
1133@subsubsection Concepts of Version Control
1134
1135@cindex master file
1136@cindex registered file
1137 When a file is under version control, we also say that it is
1138@dfn{registered} in the version control system. Each registered file
1139has a corresponding @dfn{master file} which represents the file's
1140present state plus its change history---enough to reconstruct the
1141current version or any earlier version. Usually the master file also
1142records a @dfn{log entry} for each version, describing in words what was
1143changed in that version.
1144
1145@cindex work file
1146@cindex checking out files
1147 The file that is maintained under version control is sometimes called
1148the @dfn{work file} corresponding to its master file. You edit the work
1149file and make changes in it, as you would with an ordinary file. (With
1150SCCS and RCS, you must @dfn{lock} the file before you start to edit it.)
1151After you are done with a set of changes, you @dfn{check the file in},
1152which records the changes in the master file, along with a log entry for
1153them.
1154
1155 With CVS, there are usually multiple work files corresponding to a
1156single master file---often each user has his own copy. It is also
1157possible to use RCS in this way, but this is not the usual way to use
1158RCS.
1159
1160@cindex locking and version control
1161 A version control system typically has some mechanism to coordinate
1162between users who want to change the same file. One method is
1163@dfn{locking} (analogous to the locking that Emacs uses to detect
1164simultaneous editing of a file, but distinct from it). The other method
1165is to merge your changes with other people's changes when you check them
1166in.
1167
1168 With version control locking, work files are normally read-only so
1169that you cannot change them. You ask the version control system to make
1170a work file writable for you by locking it; only one user can do
1171this at any given time. When you check in your changes, that unlocks
1172the file, making the work file read-only again. This allows other users
1173to lock the file to make further changes. SCCS always uses locking, and
1174RCS normally does.
1175
1176 The other alternative for RCS is to let each user modify the work file
1177at any time. In this mode, locking is not required, but it is
1178permitted; check-in is still the way to record a new version.
1179
1180 CVS normally allows each user to modify his own copy of the work file
1181at any time, but requires merging with changes from other users at
1182check-in time. However, CVS can also be set up to require locking.
ad63cf1d 1183(@pxref{CVS Options}).
6bf7aab6
DL
1184
1185@node VC Mode Line
1186@subsection Version Control and the Mode Line
1187
1188 When you visit a file that is under version control, Emacs indicates
1189this on the mode line. For example, @samp{RCS-1.3} says that RCS is
1190used for that file, and the current version is 1.3.
1191
1192 The character between the back-end name and the version number
1193indicates the version control status of the file. @samp{-} means that
1194the work file is not locked (if locking is in use), or not modified (if
1195locking is not in use). @samp{:} indicates that the file is locked, or
1196that it is modified. If the file is locked by some other user (for
1197instance, @samp{jim}), that is displayed as @samp{RCS:jim:1.3}.
1198
1199@node Basic VC Editing
1200@subsection Basic Editing under Version Control
1201
1202 The principal VC command is an all-purpose command that performs
1203either locking or check-in, depending on the situation.
1204
1205@table @kbd
1206@item C-x C-q
1207@itemx C-x v v
1208Perform the next logical version control operation on this file.
1209@end table
1210
1211@findex vc-next-action
1212@findex vc-toggle-read-only
1213@kindex C-x v v
1214@kindex C-x C-q @r{(Version Control)}
1215 Strictly speaking, the command for this job is @code{vc-next-action},
1216bound to @kbd{C-x v v}. However, the normal meaning of @kbd{C-x C-q} is
1217to make a read-only buffer writable, or vice versa; we have extended it
1218to do the same job properly for files managed by version control, by
1219performing the appropriate version control operations. When you type
1220@kbd{C-x C-q} on a registered file, it acts like @kbd{C-x v v}.
1221
1222 The precise action of this command depends on the state of the file,
1223and whether the version control system uses locking or not. SCCS and
1224RCS normally use locking; CVS normally does not use locking.
1225
1226@menu
1227* VC with Locking:: RCS in its default mode, SCCS, and optionally CVS.
1228* Without Locking:: Without locking: default mode for CVS.
ad63cf1d 1229* Extended Actions:: Avanced features available with a prefix argument.
6bf7aab6
DL
1230* Log Buffer:: Features available in log entry buffers.
1231@end menu
1232
1233@node VC with Locking
1234@subsubsection Basic Version Control with Locking
1235
1236 If locking is used for the file (as with SCCS, and RCS in its default
1237mode), @kbd{C-x C-q} can either lock a file or check it in:
1238
1239@itemize @bullet
1240@item
1241If the file is not locked, @kbd{C-x C-q} locks it, and
1242makes it writable so that you can change it.
1243
1244@item
1245If the file is locked by you, and contains changes, @kbd{C-x C-q} checks
1246in the changes. In order to do this, it first reads the log entry
1247for the new version. @xref{Log Buffer}.
1248
1249@item
1250If the file is locked by you, but you have not changed it since you
1251locked it, @kbd{C-x C-q} releases the lock and makes the file read-only
1252again.
1253
1254@item
1255If the file is locked by some other user, @kbd{C-x C-q} asks you whether
1256you want to ``steal the lock'' from that user. If you say yes, the file
1257becomes locked by you, but a message is sent to the person who had
1258formerly locked the file, to inform him of what has happened.
1259@end itemize
1260
1261 These rules also apply when you use CVS in locking mode, except
1262that there is no such thing as stealing a lock.
1263
1264@node Without Locking
1265@subsubsection Basic Version Control without Locking
1266
1267 When there is no locking---the default for CVS---work files are always
1268writable; you do not need to do anything before you begin to edit a
1269file. The status indicator on the mode line is @samp{-} if the file is
1270unmodified; it flips to @samp{:} as soon as you save any changes in the
1271work file.
1272
1273 Here is what @kbd{C-x C-q} does when using CVS:
1274
1275@itemize @bullet
1276@item
1277If some other user has checked in changes into the master file,
1278Emacs asks you whether you want to merge those changes into your own
ad63cf1d
AS
1279work file. You must do this before you can check in
1280your own changes. (To pick up any recent changes from the master file
1281@emph{without} trying to commit your own changes, type @kbd{C-x v m RET}.)
1282@xref{Merging}.
6bf7aab6
DL
1283
1284@item
1285If there are no new changes in the master file, but you have made
1286modifications in your work file, @kbd{C-x C-q} checks in your changes.
1287In order to do this, it first reads the log entry for the new version.
1288@xref{Log Buffer}.
1289
1290@item
1291If the file is not modified, the @kbd{C-x C-q} does nothing.
1292@end itemize
1293
1294 These rules also apply when you use RCS in the mode that does not
1295require locking, except that automatic merging of changes from the
1296master file is not implemented. Unfortunately, this means that nothing
1297informs you if another user has checked in changes in the same file
1298since you began editing it, and when this happens, his changes will be
1299effectively removed when you check in your version (though they will
1300remain in the master file, so they will not be entirely lost). You must
1301therefore verify the current version is unchanged, before you check in your
1302changes. We hope to eliminate this risk and provide automatic merging
1303with RCS in a future Emacs version.
1304
1305 In addition, locking is possible with RCS even in this mode, although
1306it is not required; @kbd{C-x C-q} with an unmodified file locks the
1307file, just as it does with RCS in its normal (locking) mode.
1308
ad63cf1d
AS
1309@node Extended Actions
1310@subsubsection Calling @code{vc-next-action} with a Prefix Argument
1311
1312When you give a prefix argument to @code{vc-next-action} (@kbd{C-u C-x
1313C-q}), it still performs the next logical version control operation, but
1314in an extended sense.
1315
1316@itemize @bullet
1317@item If the file is modified (or locked), you can specify the version
1318number that should be used for check-in. This is also one way to create
1319a new branch (@pxref{Branches}).
1320
1321@item If the file is not modified (and unlocked), you can specify a new
1322version to go to; this lets you start working from an older version, or
1323on another branch. If you do not enter any version, that takes you to
1324the highest version on the current branch; therefore @kbd{C-u C-x C-q
1325RET} is a convenient way to get the latest version of a file from the
1326repository.
1327
1328@item Regardless of the state of the file, you can also enter the name
1329of another version control system instead of a version number. This
1330lets you use more than one version control system for a file
1331(@pxref{Local Version Control}).
1332@end itemize
1333
6bf7aab6
DL
1334@node Log Buffer
1335@subsubsection Features of the Log Entry Buffer
1336
1337 When you check in changes, @kbd{C-x C-q} first reads a log entry. It
1338pops up a buffer called @samp{*VC-Log*} for you to enter the log entry.
1339When you are finished, type @kbd{C-c C-c} in the @samp{*VC-Log*} buffer.
1340That is when check-in really happens.
1341
1342 To abort check-in, just @strong{don't} type @kbd{C-c C-c} in that
1343buffer. You can switch buffers and do other editing. As long as you
1344don't try to check in another file, the entry you were editing remains
1345in the @samp{*VC-Log*} buffer, and you can go back to that buffer at any
1346time to complete the check-in.
1347
1348 If you change several source files for the same reason, it is often
1349convenient to specify the same log entry for many of the files. To do
1350this, use the history of previous log entries. The commands @kbd{M-n},
1351@kbd{M-p}, @kbd{M-s} and @kbd{M-r} for doing this work just like the
1352minibuffer history commands (except that these versions are used outside
1353the minibuffer).
1354
1355@vindex vc-log-mode-hook
1356 Each time you check in a file, the log entry buffer is put into VC Log
1357mode, which involves running two hooks: @code{text-mode-hook} and
1358@code{vc-log-mode-hook}. @xref{Hooks}.
1359
1360@node Old Versions
1361@subsection Examining And Comparing Old Versions
1362
1363 One of the convenient features of version control is the ability
1364to examine any version of a file, or compare two versions.
1365
1366@table @kbd
1367@item C-x v ~ @var{version} @key{RET}
1368Examine version @var{version} of the visited file, in a buffer of its
1369own.
1370
1371@item C-x v =
1372Compare the current buffer contents with the latest checked-in version
1373of the file.
1374
1375@item C-u C-x v = @var{file} @key{RET} @var{oldvers} @key{RET} @var{newvers} @key{RET}
1376Compare the specified two versions of @var{file}.
1377
1378@item C-x v g
1379Display the result of the CVS annotate command using colors.
1380@end table
1381
1382@findex vc-version-other-window
1383@kindex C-x v ~
1384 To examine an old version in toto, visit the file and then type
1385@kbd{C-x v ~ @var{version} @key{RET}} (@code{vc-version-other-window}).
1386This puts the text of version @var{version} in a file named
1387@file{@var{filename}.~@var{version}~}, and visits it in its own buffer
1388in a separate window. (In RCS, you can also select an old version
1389and create a branch from it. @xref{Branches}.)
1390
1391@findex vc-diff
1392@kindex C-x v =
ae529c64 1393 It is usually more convenient to compare two versions of the file,
6bf7aab6
DL
1394with the command @kbd{C-x v =} (@code{vc-diff}). Plain @kbd{C-x v =}
1395compares the current buffer contents (saving them in the file if
1396necessary) with the last checked-in version of the file. @kbd{C-u C-x v
1397=}, with a numeric argument, reads a file name and two version numbers,
1398then compares those versions of the specified file.
1399
1400 If you supply a directory name instead of the name of a registered
1401file, this command compares the two specified versions of all registered
1402files in that directory and its subdirectories.
1403
1404 You can specify a checked-in version by its number; an empty input
1405specifies the current contents of the work file (which may be different
1406from all the checked-in versions). You can also specify a snapshot name
1407(@pxref{Snapshots}) instead of one or both version numbers.
1408
ad63cf1d
AS
1409@vindex diff-switches
1410@vindex vc-diff-switches
1411 This command works by running a variant of the @code{diff} utility
1412that is specific to the version control system in use. Emacs passes the
1413contents of the variable @code{diff-switches} to that utility; you can
1414define specific options for version control in @code{vc-diff-switches},
1415and there are similar variables for each specific system,
1416e.g. @code{vc-rcs-diff-switches}, and the like.
1417
1418 The output of the @code{diff} command is displayed in a special buffer
1419in another window. Unlike the @kbd{M-x diff} command, @kbd{C-x v =}
1420does not try to locate the changes in the old and new versions. This is
1421because normally one or both versions do not exist as files when you
1422compare them; they exist only in the records of the master file.
1423@xref{Comparing Files}, for more information about @kbd{M-x diff}.
6bf7aab6
DL
1424
1425@findex vc-annotate
1426@kindex C-x v g
1427 For CVS-controlled files, you can display the result of the CVS
1428annotate command, using colors to enhance the visual appearance. Use
1429the command @kbd{M-x vc-annotate} to do this. Red means new, blue means
1430old, and intermediate colors indicate intermediate ages. A prefix
1431argument @var{n} specifies a stretch factor for the time scale; it makes
1432each color cover a period @var{n} times as long.
1433
1434@node Secondary VC Commands
1435@subsection The Secondary Commands of VC
1436
1437 This section explains the secondary commands of VC; those that you might
1438use once a day.
1439
1440@menu
1441* Registering:: Putting a file under version control.
1442* VC Status:: Viewing the VC status of files.
1443* VC Undo:: Cancelling changes before or after check-in.
1444* VC Dired Mode:: Listing files managed by version control.
1445* VC Dired Commands:: Commands to use in a VC Dired buffer.
1446@end menu
1447
1448@node Registering
1449@subsubsection Registering a File for Version Control
1450
1451@kindex C-x v i
1452@findex vc-register
1453 You can put any file under version control by simply visiting it, and
1454then typing @w{@kbd{C-x v i}} (@code{vc-register}).
1455
1456@table @kbd
1457@item C-x v i
1458Register the visited file for version control.
1459@end table
1460
6bf7aab6 1461 To register the file, Emacs must choose which version control system
ad63cf1d
AS
1462to use for it. If the file's directory already contains files
1463registered in a version control system, Emacs uses that system. If
1464there is more than one system in use for a directory, Emacs uses the one
1465that appears first in @var{vc-handled-backends} (@pxref{Customizing VC}).
1466On the other hand, if there are no files already registered,
1467Emacs uses the first system from @var{vc-handled-backends} that could
1468register the file---for example, you cannot register a file under CVS if
1469its directory is not already part of a CVS tree.
1470
1471 With the default value of @var{vc-handled-backends}, this means that
1472Emacs uses RCS if there are any files under RCS control, and CVS if
1473there are any files under CVS. If there are no files under version
1474control, RCS is used.
6bf7aab6
DL
1475
1476 If locking is in use, @kbd{C-x v i} leaves the file unlocked and
1477read-only. Type @kbd{C-x C-q} if you wish to start editing it. After
1478registering a file with CVS, you must subsequently commit the initial
1479version by typing @kbd{C-x C-q}.
1480
1481@vindex vc-default-init-version
1482 The initial version number for a newly registered file is 1.1, by
1483default. You can specify a different default by setting the variable
1484@code{vc-default-init-version}, or you can give @kbd{C-x v i} a numeric
1485argument; then it reads the initial version number for this particular
1486file using the minibuffer.
1487
1488@vindex vc-initial-comment
1489 If @code{vc-initial-comment} is non-@code{nil}, @kbd{C-x v i} reads an
1490initial comment to describe the purpose of this source file. Reading
1491the initial comment works like reading a log entry (@pxref{Log Buffer}).
1492
1493@node VC Status
1494@subsubsection VC Status Commands
1495
1496@table @kbd
1497@item C-x v l
1498Display version control state and change history.
1499@end table
1500
1501@kindex C-x v l
1502@findex vc-print-log
1503 To view the detailed version control status and history of a file,
1504type @kbd{C-x v l} (@code{vc-print-log}). It displays the history of
1505changes to the current file, including the text of the log entries. The
1506output appears in a separate window.
1507
1508@node VC Undo
1509@subsubsection Undoing Version Control Actions
1510
1511@table @kbd
1512@item C-x v u
1513Revert the buffer and the file to the last checked-in version.
1514
1515@item C-x v c
1516Remove the last-entered change from the master for the visited file.
1517This undoes your last check-in.
1518@end table
1519
1520@kindex C-x v u
1521@findex vc-revert-buffer
1522 If you want to discard your current set of changes and revert to the
1523last version checked in, use @kbd{C-x v u} (@code{vc-revert-buffer}).
1524This leaves the file unlocked; if locking is in use, you must first lock
1525the file again before you change it again. @kbd{C-x v u} requires
1526confirmation, unless it sees that you haven't made any changes since the
1527last checked-in version.
1528
1529 @kbd{C-x v u} is also the command to unlock a file if you lock it and
1530then decide not to change it.
1531
1532@kindex C-x v c
1533@findex vc-cancel-version
1534 To cancel a change that you already checked in, use @kbd{C-x v c}
1535(@code{vc-cancel-version}). This command discards all record of the
1536most recent checked-in version. @kbd{C-x v c} also offers to revert
1537your work file and buffer to the previous version (the one that precedes
1538the version that is deleted).
1539
1540 If you answer @kbd{no}, VC keeps your changes in the buffer, and locks
1541the file. The no-revert option is useful when you have checked in a
1542change and then discover a trivial error in it; you can cancel the
1543erroneous check-in, fix the error, and check the file in again.
1544
1545 When @kbd{C-x v c} does not revert the buffer, it unexpands all
1546version control headers in the buffer instead (@pxref{Version Headers}).
1547This is because the buffer no longer corresponds to any existing
1548version. If you check it in again, the check-in process will expand the
1549headers properly for the new version number.
1550
1551 However, it is impossible to unexpand the RCS @samp{@w{$}Log$} header
1552automatically. If you use that header feature, you have to unexpand it
1553by hand---by deleting the entry for the version that you just canceled.
1554
1555 Be careful when invoking @kbd{C-x v c}, as it is easy to lose a lot of
1556work with it. To help you be careful, this command always requires
1557confirmation with @kbd{yes}. Note also that this command is disabled
1558under CVS, because canceling versions is very dangerous and discouraged
1559with CVS.
1560
1561@node VC Dired Mode
1562@subsubsection Dired under VC
1563
fa474484
DL
1564@cindex PCL-CVS
1565@pindex cvs
1566@cindex CVS Dired Mode
f02d86a3
RS
1567 The VC Dired Mode described here works with all the version control
1568systems that VC supports. Another more powerful facility, designed
1569specifically for CVS, is called PCL-CVS. @xref{Top, , About PCL-CVS,
1570pcl-cvs, PCL-CVS --- The Emacs Front-End to CVS}.
fa474484 1571
6bf7aab6
DL
1572@kindex C-x v d
1573@findex vc-directory
1574 When you are working on a large program, it is often useful to find
1575out which files have changed within an entire directory tree, or to view
1576the status of all files under version control at once, and to perform
1577version control operations on collections of files. You can use the
1578command @kbd{C-x v d} (@code{vc-directory}) to make a directory listing
1579that includes only files relevant for version control.
1580
1581@vindex vc-dired-terse-display
1582 @kbd{C-x v d} creates a buffer which uses VC Dired Mode. This looks
1583much like an ordinary Dired buffer (@pxref{Dired}); however, normally it
1584shows only the noteworthy files (those locked or not up-to-date). This
1585is called @dfn{terse display}. If you set the variable
1586@code{vc-dired-terse-display} to @code{nil}, then VC Dired shows all
1587relevant files---those managed under version control, plus all
1588subdirectories (@dfn{full display}). The command @kbd{v t} in a VC
1589Dired buffer toggles between terse display and full display (@pxref{VC
1590Dired Commands}).
1591
1592@vindex vc-dired-recurse
1593 By default, VC Dired produces a recursive listing of noteworthy or
1594relevant files at or below the given directory. You can change this by
1595setting the variable @code{vc-dired-recurse} to @code{nil}; then VC
1596Dired shows only the files in the given directory.
1597
1598 The line for an individual file shows the version control state in the
1599place of the hard link count, owner, group, and size of the file. If
1600the file is unmodified, in sync with the master file, the version
1601control state shown is blank. Otherwise it consists of text in
1602parentheses. Under RCS and SCCS, the name of the user locking the file
1603is shown; under CVS, an abbreviated version of the @samp{cvs status}
1604output is used. Here is an example using RCS:
1605
1606@smallexample
1607@group
1608 /home/jim/project:
1609
1610 -rw-r--r-- (jim) Apr 2 23:39 file1
1611 -r--r--r-- Apr 5 20:21 file2
1612@end group
1613@end smallexample
1614
1615@noindent
1616The files @samp{file1} and @samp{file2} are under version control,
1617@samp{file1} is locked by user jim, and @samp{file2} is unlocked.
1618
1619 Here is an example using CVS:
1620
1621@smallexample
1622@group
1623 /home/joe/develop:
1624
1625 -rw-r--r-- (modified) Aug 2 1997 file1.c
1626 -rw-r--r-- Apr 4 20:09 file2.c
1627 -rw-r--r-- (merge) Sep 13 1996 file3.c
1628@end group
1629@end smallexample
1630
1631 Here @samp{file1.c} is modified with respect to the repository, and
1632@samp{file2.c} is not. @samp{file3.c} is modified, but other changes
1633have also been checked in to the repository---you need to merge them
1634with the work file before you can check it in.
1635
1636@vindex vc-directory-exclusion-list
1637 When VC Dired displays subdirectories (in the ``full'' display mode),
1638it omits some that should never contain any files under version control.
1639By default, this includes Version Control subdirectories such as
1640@samp{RCS} and @samp{CVS}; you can customize this by setting the
1641variable @code{vc-directory-exclusion-list}.
1642
1643 You can fine-tune VC Dired's format by typing @kbd{C-u C-x v d}---as in
1644ordinary Dired, that allows you to specify additional switches for the
1645@samp{ls} command.
1646
1647@node VC Dired Commands
1648@subsubsection VC Dired Commands
1649
1650 All the usual Dired commands work normally in VC Dired mode, except
1651for @kbd{v}, which is redefined as the version control prefix. You can
1652invoke VC commands such as @code{vc-diff} and @code{vc-print-log} by
1653typing @kbd{v =}, or @kbd{v l}, and so on. Most of these commands apply
1654to the file name on the current line.
1655
1656 The command @kbd{v v} (@code{vc-next-action}) operates on all the
1657marked files, so that you can lock or check in several files at once.
1658If it operates on more than one file, it handles each file according to
1659its current state; thus, it might lock one file, but check in another
1660file. This could be confusing; it is up to you to avoid confusing
1661behavior by marking a set of files that are in a similar state.
1662
1663 If any files call for check-in, @kbd{v v} reads a single log entry,
1664then uses it for all the files being checked in. This is convenient for
1665registering or checking in several files at once, as part of the same
1666change.
1667
1668@findex vc-dired-toggle-terse-mode
1669@findex vc-dired-mark-locked
1670 You can toggle between terse display (only locked files, or files not
1671up-to-date) and full display at any time by typing @kbd{v t}
1672@code{vc-dired-toggle-terse-mode}. There is also a special command
1673@kbd{* l} (@code{vc-dired-mark-locked}), which marks all files currently
1674locked (or, with CVS, all files not up-to-date). Thus, typing @kbd{* l
1675t k} is another way to delete from the buffer all files except those
1676currently locked.
1677
1678@node Branches
1679@subsection Multiple Branches of a File
1680@cindex branch (version control)
1681@cindex trunk (version control)
1682
1683 One use of version control is to maintain multiple ``current''
1684versions of a file. For example, you might have different versions of a
1685program in which you are gradually adding various unfinished new
1686features. Each such independent line of development is called a
1687@dfn{branch}. VC allows you to create branches, switch between
1688different branches, and merge changes from one branch to another.
1689Please note, however, that branches are only supported for RCS at the
1690moment.
1691
1692 A file's main line of development is usually called the @dfn{trunk}.
1693The versions on the trunk are normally numbered 1.1, 1.2, 1.3, etc. At
1694any such version, you can start an independent branch. A branch
1695starting at version 1.2 would have version number 1.2.1.1, and consecutive
1696versions on this branch would have numbers 1.2.1.2, 1.2.1.3, 1.2.1.4,
1697and so on. If there is a second branch also starting at version 1.2, it
1698would consist of versions 1.2.2.1, 1.2.2.2, 1.2.2.3, etc.
1699
1700@cindex head version
1701 If you omit the final component of a version number, that is called a
1702@dfn{branch number}. It refers to the highest existing version on that
1703branch---the @dfn{head version} of that branch. The branches in the
1704example above have branch numbers 1.2.1 and 1.2.2.
1705
1706@menu
1707* Switching Branches:: How to get to another existing branch.
1708* Creating Branches:: How to start a new branch.
1709* Merging:: Transferring changes between branches.
1710* Multi-User Branching:: Multiple users working at multiple branches
1711 in parallel.
1712@end menu
1713
1714@node Switching Branches
1715@subsubsection Switching between Branches
1716
1717 To switch between branches, type @kbd{C-u C-x C-q} and specify the
1718version number you want to select. This version is then visited
1719@emph{unlocked} (write-protected), so you can examine it before locking
1720it. Switching branches in this way is allowed only when the file is not
1721locked.
1722
1723 You can omit the minor version number, thus giving only the branch
1724number; this takes you to the head version on the chosen branch. If you
ad63cf1d 1725only type @kbd{RET}, Emacs goes to the highest version on the trunk.
6bf7aab6
DL
1726
1727 After you have switched to any branch (including the main branch), you
1728stay on it for subsequent VC commands, until you explicitly select some
1729other branch.
1730
1731@node Creating Branches
1732@subsubsection Creating New Branches
1733
1734 To create a new branch from a head version (one that is the latest in
1735the branch that contains it), first select that version if necessary,
1736lock it with @kbd{C-x C-q}, and make whatever changes you want. Then,
1737when you check in the changes, use @kbd{C-u C-x C-q}. This lets you
1738specify the version number for the new version. You should specify a
1739suitable branch number for a branch starting at the current version.
1740For example, if the current version is 2.5, the branch number should be
17412.5.1, 2.5.2, and so on, depending on the number of existing branches at
1742that point.
1743
1744 To create a new branch at an older version (one that is no longer the
1745head of a branch), first select that version (@pxref{Switching
1746Branches}), then lock it with @kbd{C-x C-q}. You'll be asked to
1747confirm, when you lock the old version, that you really mean to create a
1748new branch---if you say no, you'll be offered a chance to lock the
1749latest version instead.
1750
1751 Then make your changes and type @kbd{C-x C-q} again to check in a new
1752version. This automatically creates a new branch starting from the
1753selected version. You need not specially request a new branch, because
1754that's the only way to add a new version at a point that is not the head
1755of a branch.
1756
1757 After the branch is created, you ``stay'' on it. That means that
1758subsequent check-ins create new versions on that branch. To leave the
1759branch, you must explicitly select a different version with @kbd{C-u C-x
1760C-q}. To transfer changes from one branch to another, use the merge
1761command, described in the next section.
1762
1763@node Merging
1764@subsubsection Merging Branches
1765
1766@cindex merging changes
1767 When you have finished the changes on a certain branch, you will
1768often want to incorporate them into the file's main line of development
1769(the trunk). This is not a trivial operation, because development might
1770also have proceeded on the trunk, so that you must @dfn{merge} the
1771changes into a file that has already been changed otherwise. VC allows
1772you to do this (and other things) with the @code{vc-merge} command.
1773
1774@table @kbd
1775@item C-x v m (vc-merge)
1776Merge changes into the work file.
1777@end table
1778
1779@kindex C-x v m
1780@findex vc-merge
1781 @kbd{C-x v m} (@code{vc-merge}) takes a set of changes and merges it
ad63cf1d
AS
1782into the current version of the work file. It firsts asks you in the
1783minibuffer where the changes should come from. If you just type
1784@kbd{RET}, Emacs merges any changes that were made on the same branch
1785since you checked the file out (we call this @dfn{merging the news}).
1786This is the common way to pick up recent changes from the repository,
1787regardless of whether you have already changed the file yourself.
1788
1789 You can also enter a branch number or a pair of version numbers in
1790the minibuffer. Then it finds the changes from that branch, or between
1791the two versions you specified, and merges them into the current version
1792of the current file.
6bf7aab6
DL
1793
1794 As an example, suppose that you have finished a certain feature on
1795branch 1.3.1. In the meantime, development on the trunk has proceeded
1796to version 1.5. To merge the changes from the branch to the trunk,
1797first go to the head version of the trunk, by typing @kbd{C-u C-x C-q
1798RET}. Version 1.5 is now current. If locking is used for the file,
1799type @kbd{C-x C-q} to lock version 1.5 so that you can change it. Next,
1800type @kbd{C-x v m 1.3.1 RET}. This takes the entire set of changes on
1801branch 1.3.1 (relative to version 1.3, where the branch started, up to
1802the last version on the branch) and merges it into the current version
1803of the work file. You can now check in the changed file, thus creating
1804version 1.6 containing the changes from the branch.
1805
1806 It is possible to do further editing after merging the branch, before
1807the next check-in. But it is usually wiser to check in the merged
1808version, then lock it and make the further changes. This will keep
1809a better record of the history of changes.
1810
1811@cindex conflicts
1812@cindex resolving conflicts
1813 When you merge changes into a file that has itself been modified, the
1814changes might overlap. We call this situation a @dfn{conflict}, and
1815reconciling the conflicting changes is called @dfn{resolving a
1816conflict}.
1817
1818 Whenever conflicts occur during merging, VC detects them, tells you
1819about them in the echo area, and asks whether you want help in merging.
1820If you say yes, it starts an Ediff session (@pxref{Top,
1821Ediff, Ediff, ediff, The Ediff Manual}).
1822
1823 If you say no, the conflicting changes are both inserted into the
1824file, surrounded by @dfn{conflict markers}. The example below shows how
1825a conflict region looks; the file is called @samp{name} and the current
1826master file version with user B's changes in it is 1.11.
1827
1828@c @w here is so CVS won't think this is a conflict.
1829@smallexample
1830@group
1831@w{<}<<<<<< name
1832 @var{User A's version}
1833=======
1834 @var{User B's version}
1835@w{>}>>>>>> 1.11
1836@end group
1837@end smallexample
1838
1839@cindex vc-resolve-conflicts
1840 Then you can resolve the conflicts by editing the file manually. Or
1841you can type @code{M-x vc-resolve-conflicts} after visiting the file.
1842This starts an Ediff session, as described above.
1843
1844@node Multi-User Branching
1845@subsubsection Multi-User Branching
1846
1847 It is often useful for multiple developers to work simultaneously on
1848different branches of a file. CVS allows this by default; for RCS, it
1849is possible if you create multiple source directories. Each source
1850directory should have a link named @file{RCS} which points to a common
1851directory of RCS master files. Then each source directory can have its
1852own choice of selected versions, but all share the same common RCS
1853records.
1854
1855 This technique works reliably and automatically, provided that the
1856source files contain RCS version headers (@pxref{Version Headers}). The
1857headers enable Emacs to be sure, at all times, which version number is
1858present in the work file.
1859
1860 If the files do not have version headers, you must instead tell Emacs
1861explicitly in each session which branch you are working on. To do this,
1862first find the file, then type @kbd{C-u C-x C-q} and specify the correct
1863branch number. This ensures that Emacs knows which branch it is using
1864during this particular editing session.
1865
ad63cf1d
AS
1866@node Remote Repositories
1867@subsection Remote Repositories
1868@cindex remote repositories (CVS)
1869
1870Many projects set up a central CVS repository somewhere in the Internet,
1871and let each user check out a personal working copy of the files to
1872his local machine. Committing changes to the repository, and picking
1873up changes from other users into one's own working area, then works by
1874direct interactions with the CVS server.
1875
1876The problem is that access to the CVS server is often slow, and that
1877developers might need to work offline as well. VC therefore offers
1878some features that allow you to keep network interactions to a
1879minimum.
1880
1881@menu
1882* Version Backups:: Keeping local copies of repository versions.
1883* Local Version Control:: Using another version system for local editing.
1884@end menu
1885
1886@node Version Backups
1887@subsubsection Version Backups
1888@cindex version backups
1889
1890When VC sees that the CVS repository for a file is on a remote machine,
1891it automatically makes local backups of unmodified versions of the file.
1892This means that you can compare the file to the repository version
1893(@kbd{C-x v =}), or revert to that version (@kbd{C-x v u}), without any
1894network interactions.
1895
1896The local copy of the unmodified file is called a @dfn{version backup}.
1897This is to indicate that it corresponds exactly to a version that is
1898stored in the repository. Note that version backups are related to,
1899but distinct from the other kinds of backups that Emacs can make:
1900single backups and numbered backups (@pxref{Backup}).
1901
1902@vindex vc-cvs-stay-local
1903For a file that comes from a remote CVS repository, VC makes a version
1904backup whenever you save the first changes to the file, and removes it
1905after you have committed your modified version to the repository. (You
1906can switch this off by setting the variable @code{vc-cvs-stay-local} to
1907@code{nil}.)
1908
1909@cindex automatic version backups
1910@cindex manual version backups
1911The name of a version backup for a file named @var{file}, with version
1912@var{version}, is @code{@var{file}.~@var{version}.~}. Note that this
1913naming convention is almost the same as that used by @kbd{C-x v ~}
1914(@pxref{Old Versions}), the only difference being the additional dot
1915(@samp{.}) after the version number. This similarity is intentional,
1916because both kinds of files store the same kind of information. To
1917distinguish between them, we speak of @dfn{automatic version backups}
1918(those created by the mechanism described here) and @dfn{manual version
1919backups} (created by @kbd{C-x v ~}). Their primary difference is that
1920Emacs deletes automatic version backups when you commit to the
1921repository (this is why the trailing dot is needed to identify them),
1922while manual version backups are never deleted automatically.
1923
1924Each of the two mechanisms can use the files created by the other one.
1925For example, if you changed a file outside of Emacs, so that no
1926automatic version backup was created, you can create a manual backup of
1927that version using @kbd{C-x v ~}. Emacs will then use that file for
1928local diff and revert operations.
1929
1930@node Local Version Control
1931@subsubsection Local Version Control
1932@cindex local version control
1933@cindex local back end (version control)
1934
1935When you make many changes to a file that comes from a remote
1936repository, it can be convenient to have version control on your local
1937machine as well. You can then record intermediate versions, revert to
1938a previous state, etc., before you actually commit your changes to the
1939remote server.
1940
1941VC lets you do this by putting a file under a second, local version
1942control system, so that the file is effectively registered in two
1943systems at the same time. For the description here, we will assume
1944that the remote system is CVS, and you use RCS locally, although the
1945mechanism works with any combination of version control systems
1946(@dfn{back ends}).
1947
1948To make it work with other back ends, you must make sure that the "more
1949local" back end comes before the "more remote" back end in the setting
1950of @var{vc-handled-backends} (@pxref{Customizing VC}). By default, this
1951variable is set up correctly so that you can use RCS and CVS as
1952described here.
1953
1954To start using local RCS for a file that comes from a remote CVS server,
1955you must @dfn{commit the file to RCS}, by typing @kbd{C-u C-x v v rcs
1956RET}. (In other words, @code{vc-next-action}, when called with a prefix
1957argument, accepts a back end name in place of the version to commit to.)
1958VC then registers the file under RCS.
1959
1960You can commit to RCS at any time; it does not matter whether you have
1961already modified the file with respect to the version in the CVS
1962repository. If possible, VC tries to make the RCS master start with
1963the unmodified repository version, then checking in any local changes
1964as a new version. This works if you have not made any changes yet,
1965or if the unmodified repository version exists locally as a version
1966backup (@pxref{Version Backups}). If the unmodified version is not
1967available locally, the RCS master starts with the modified version;
1968the only problem with this is that you cannot compare your changes
1969locally to what is stored in the repository.
1970
1971The version number of the RCS master is derived from the current CVS
1972version, starting a branch from it. For example, if the current CVS
1973version is 1.23, the local RCS branch will be 1.23.1. Version 1.23 in
1974the RCS master will be identical to version 1.23 under CVS; your first
1975changes are checked in as 1.23.1.1. (If the unmodified file is not
1976available locally, VC will check-in the modified file twice, both as
19771.23 and 1.23.1.1, to make the revision numbers consistent.)
1978
1979If you do not use locking under CVS (the default), locking is also
1980switched off under RCS, so that editing under RCS works exactly as
1981under CVS.
1982
1983When you are done with your edits, you can commit the final version back
1984to the CVS repository, typing @kbd{C-u C-x v v cvs RET}. Emacs will
1985initialize the log entry buffer (@pxref{Log Buffer}) to contain all the
1986check-in comments you have made in the RCS master; you can make changes
1987to these comments as needed and then commit to CVS by typing @kbd{C-c
1988C-c}. If the commit is successful, VC finally removes the RCS master,
1989so that the file becomes once again registered under CVS only. (The RCS
1990master is not actually deleted, but renamed by adding a @samp{~} to its
1991name, so that you can get back to it later if you want.)
1992
1993While you are working with a local RCS master, you might still want to
1994pick up recent changes from the CVS repository into your local file,
1995or you might want to commit some of your changes back to CVS, without
1996actually switching back to CVS completely. VC lets you do this by
1997switching to another backend temporarily.
1998
1999@table @kbd
2000@item C-x v b
2001Switch to any other back end that the current file is registered
2002under (@code{vc-switch-backend}).
2003@end table
2004
2005@kindex{C-x v b}
2006@findex vc-switch-backend
2007If the current file is registered in more than one back end, typing
2008@kbd{C-x v b} lets you ``cycle'' through these back ends. (With a prefix
2009argument, it asks for the back end to use in the minibuffer.) This
2010command does not change any files, it only changes VC's perspective of
2011the file. Any other VC commands that you use on a file will operate on
2012the back end that is currently selected.
2013
2014Thus, if you have a file under local RCS, and you want to pick up some
2015recent changes from CVS, type @kbd{C-x v b} to switch to CVS, and then
2016@kbd{C-x v m RET} to merge the news (@pxref{Merging}). You can then switch
2017back to RCS by typing @kbd{C-x v b} again, and continue to edit locally.
2018
2019Note though, that if you do this, the revision numbers in the RCS
2020master no longer correspond to those of CVS in a meaningful way.
2021Technically, this is not a problem, but it might be more difficult for
2022you to keep track of what is in the repository and what is not. So we
2023suggest that, frequently, you commit your changes back to CVS
2024completely using @kbd{C-u C-x v v cvs RET}.
2025
6bf7aab6
DL
2026@node Snapshots
2027@subsection Snapshots
2028@cindex snapshots and version control
2029
2030 A @dfn{snapshot} is a named set of file versions (one for each
2031registered file) that you can treat as a unit. One important kind of
2032snapshot is a @dfn{release}, a (theoretically) stable version of the
2033system that is ready for distribution to users.
2034
2035@menu
2036* Making Snapshots:: The snapshot facilities.
2037* Snapshot Caveats:: Things to be careful of when using snapshots.
2038@end menu
2039
2040@node Making Snapshots
2041@subsubsection Making and Using Snapshots
2042
2043 There are two basic commands for snapshots; one makes a
2044snapshot with a given name, the other retrieves a named snapshot.
2045
2046@table @code
2047@kindex C-x v s
2048@findex vc-create-snapshot
2049@item C-x v s @var{name} @key{RET}
2050Define the last saved versions of every registered file in or under the
2051current directory as a snapshot named @var{name}
2052(@code{vc-create-snapshot}).
2053
2054@kindex C-x v r
2055@findex vc-retrieve-snapshot
2056@item C-x v r @var{name} @key{RET}
2057For all registered files at or below the current directory level, select
2058whatever versions correspond to the snapshot @var{name}
2059(@code{vc-retrieve-snapshot}).
2060
2061This command reports an error if any files are locked at or below the
2062current directory, without changing anything; this is to avoid
2063overwriting work in progress.
2064@end table
2065
2066 A snapshot uses a very small amount of resources---just enough to record
2067the list of file names and which version belongs to the snapshot. Thus,
2068you need not hesitate to create snapshots whenever they are useful.
2069
2070 You can give a snapshot name as an argument to @kbd{C-x v =} or
2071@kbd{C-x v ~} (@pxref{Old Versions}). Thus, you can use it to compare a
2072snapshot against the current files, or two snapshots against each other,
2073or a snapshot against a named version.
2074
2075@node Snapshot Caveats
2076@subsubsection Snapshot Caveats
2077
2078@cindex named configurations (RCS)
2079 VC's snapshot facilities are modeled on RCS's named-configuration
2080support. They use RCS's native facilities for this, so under VC
2081snapshots made using RCS are visible even when you bypass VC.
2082
2083@c worded verbosely to avoid overfull hbox.
2084 For SCCS, VC implements snapshots itself. The files it uses contain
2085name/file/version-number triples. These snapshots are visible only
2086through VC.
2087
2088 A snapshot is a set of checked-in versions. So make sure that all the
2089files are checked in and not locked when you make a snapshot.
2090
2091 File renaming and deletion can create some difficulties with snapshots.
2092This is not a VC-specific problem, but a general design issue in version
2093control systems that no one has solved very well yet.
2094
2095 If you rename a registered file, you need to rename its master along
2096with it (the command @code{vc-rename-file} does this automatically). If
2097you are using SCCS, you must also update the records of the snapshot, to
2098mention the file by its new name (@code{vc-rename-file} does this,
2099too). An old snapshot that refers to a master file that no longer
2100exists under the recorded name is invalid; VC can no longer retrieve
2101it. It would be beyond the scope of this manual to explain enough about
2102RCS and SCCS to explain how to update the snapshots by hand.
2103
2104 Using @code{vc-rename-file} makes the snapshot remain valid for
2105retrieval, but it does not solve all problems. For example, some of the
2106files in the program probably refer to others by name. At the very
2107least, the makefile probably mentions the file that you renamed. If you
2108retrieve an old snapshot, the renamed file is retrieved under its new
2109name, which is not the name that the makefile expects. So the program
2110won't really work as retrieved.
2111
2112@node Miscellaneous VC
2113@subsection Miscellaneous Commands and Features of VC
2114
2115 This section explains the less-frequently-used features of VC.
2116
2117@menu
2118* Change Logs and VC:: Generating a change log file from log entries.
2119* Renaming and VC:: A command to rename both the source and master
2120 file correctly.
2121* Version Headers:: Inserting version control headers into working files.
2122@end menu
2123
2124@node Change Logs and VC
2125@subsubsection Change Logs and VC
2126
2127 If you use RCS or CVS for a program and also maintain a change log
2128file for it (@pxref{Change Log}), you can generate change log entries
2129automatically from the version control log entries:
2130
2131@table @kbd
2132@item C-x v a
2133@kindex C-x v a
2134@findex vc-update-change-log
2135Visit the current directory's change log file and, for registered files
2136in that directory, create new entries for versions checked in since the
2137most recent entry in the change log file.
2138(@code{vc-update-change-log}).
2139
2140This command works with RCS or CVS only, not with SCCS.
2141
2142@item C-u C-x v a
2143As above, but only find entries for the current buffer's file.
2144
2145@item M-1 C-x v a
2146As above, but find entries for all the currently visited files that are
2147maintained with version control. This works only with RCS, and it puts
2148all entries in the log for the default directory, which may not be
2149appropriate.
2150@end table
2151
2152 For example, suppose the first line of @file{ChangeLog} is dated
21531999-04-10, and that the only check-in since then was by Nathaniel
2154Bowditch to @file{rcs2log} on 1999-05-22 with log text @samp{Ignore log
2155messages that start with `#'.}. Then @kbd{C-x v a} visits
2156@file{ChangeLog} and inserts text like this:
2157
2158@iftex
2159@medbreak
2160@end iftex
2161@smallexample
2162@group
21631999-05-22 Nathaniel Bowditch <nat@@apn.org>
2164
2165 * rcs2log: Ignore log messages that start with `#'.
2166@end group
2167@end smallexample
2168@iftex
2169@medbreak
2170@end iftex
2171
2172@noindent
2173You can then edit the new change log entry further as you wish.
2174
2175 Unfortunately, timestamps in ChangeLog files are only dates, so some
2176of the new change log entry may duplicate what's already in ChangeLog.
2177You will have to remove these duplicates by hand.
2178
2179 Normally, the log entry for file @file{foo} is displayed as @samp{*
2180foo: @var{text of log entry}}. The @samp{:} after @file{foo} is omitted
2181if the text of the log entry starts with @w{@samp{(@var{functionname}):
2182}}. For example, if the log entry for @file{vc.el} is
2183@samp{(vc-do-command): Check call-process status.}, then the text in
2184@file{ChangeLog} looks like this:
2185
2186@iftex
2187@medbreak
2188@end iftex
2189@smallexample
2190@group
21911999-05-06 Nathaniel Bowditch <nat@@apn.org>
2192
2193 * vc.el (vc-do-command): Check call-process status.
2194@end group
2195@end smallexample
2196@iftex
2197@medbreak
2198@end iftex
2199
2200 When @kbd{C-x v a} adds several change log entries at once, it groups
2201related log entries together if they all are checked in by the same
2202author at nearly the same time. If the log entries for several such
2203files all have the same text, it coalesces them into a single entry.
2204For example, suppose the most recent check-ins have the following log
2205entries:
2206
2207@flushleft
2208@bullet{} For @file{vc.texinfo}: @samp{Fix expansion typos.}
2209@bullet{} For @file{vc.el}: @samp{Don't call expand-file-name.}
2210@bullet{} For @file{vc-hooks.el}: @samp{Don't call expand-file-name.}
2211@end flushleft
2212
2213@noindent
2214They appear like this in @file{ChangeLog}:
2215
2216@iftex
2217@medbreak
2218@end iftex
2219@smallexample
2220@group
22211999-04-01 Nathaniel Bowditch <nat@@apn.org>
2222
2223 * vc.texinfo: Fix expansion typos.
2224
2225 * vc.el, vc-hooks.el: Don't call expand-file-name.
2226@end group
2227@end smallexample
2228@iftex
2229@medbreak
2230@end iftex
2231
2232 Normally, @kbd{C-x v a} separates log entries by a blank line, but you
2233can mark several related log entries to be clumped together (without an
2234intervening blank line) by starting the text of each related log entry
2235with a label of the form @w{@samp{@{@var{clumpname}@} }}. The label
2236itself is not copied to @file{ChangeLog}. For example, suppose the log
2237entries are:
2238
2239@flushleft
2240@bullet{} For @file{vc.texinfo}: @samp{@{expand@} Fix expansion typos.}
2241@bullet{} For @file{vc.el}: @samp{@{expand@} Don't call expand-file-name.}
2242@bullet{} For @file{vc-hooks.el}: @samp{@{expand@} Don't call expand-file-name.}
2243@end flushleft
2244
2245@noindent
2246Then the text in @file{ChangeLog} looks like this:
2247
2248@iftex
2249@medbreak
2250@end iftex
2251@smallexample
2252@group
22531999-04-01 Nathaniel Bowditch <nat@@apn.org>
2254
2255 * vc.texinfo: Fix expansion typos.
2256 * vc.el, vc-hooks.el: Don't call expand-file-name.
2257@end group
2258@end smallexample
2259@iftex
2260@medbreak
2261@end iftex
2262
2263 A log entry whose text begins with @samp{#} is not copied to
2264@file{ChangeLog}. For example, if you merely fix some misspellings in
2265comments, you can log the change with an entry beginning with @samp{#}
2266to avoid putting such trivia into @file{ChangeLog}.
2267
2268@node Renaming and VC
2269@subsubsection Renaming VC Work Files and Master Files
2270
2271@findex vc-rename-file
2272 When you rename a registered file, you must also rename its master
2273file correspondingly to get proper results. Use @code{vc-rename-file}
2274to rename the source file as you specify, and rename its master file
2275accordingly. It also updates any snapshots (@pxref{Snapshots}) that
2276mention the file, so that they use the new name; despite this, the
2277snapshot thus modified may not completely work (@pxref{Snapshot
2278Caveats}).
2279
2280 You cannot use @code{vc-rename-file} on a file that is locked by
2281someone else.
2282
2283@node Version Headers
2284@subsubsection Inserting Version Control Headers
2285
2286 Sometimes it is convenient to put version identification strings
2287directly into working files. Certain special strings called
2288@dfn{version headers} are replaced in each successive version by the
2289number of that version.
2290
2291 If you are using RCS, and version headers are present in your working
2292files, Emacs can use them to determine the current version and the
2293locking state of the files. This is more reliable than referring to the
2294master files, which is done when there are no version headers. Note
2295that in a multi-branch environment, version headers are necessary to
2296make VC behave correctly (@pxref{Multi-User Branching}).
2297
2298 Searching for version headers is controlled by the variable
2299@code{vc-consult-headers}. If it is non-@code{nil}, Emacs searches for
2300headers to determine the version number you are editing. Setting it to
2301@code{nil} disables this feature.
2302
2303@kindex C-x v h
2304@findex vc-insert-headers
2305 You can use the @kbd{C-x v h} command (@code{vc-insert-headers}) to
2306insert a suitable header string.
2307
2308@table @kbd
2309@item C-x v h
2310Insert headers in a file for use with your version-control system.
2311@end table
2312
2313@vindex vc-header-alist
2314 The default header string is @samp{@w{$}Id$} for RCS and
2315@samp{@w{%}W%} for SCCS. You can specify other headers to insert by
2316setting the variable @code{vc-header-alist}. Its value is a list of
2317elements of the form @code{(@var{program} . @var{string})} where
2318@var{program} is @code{RCS} or @code{SCCS} and @var{string} is the
2319string to use.
2320
2321 Instead of a single string, you can specify a list of strings; then
2322each string in the list is inserted as a separate header on a line of
2323its own.
2324
2325 It is often necessary to use ``superfluous'' backslashes when writing
2326the strings that you put in this variable. This is to prevent the
2327string in the constant from being interpreted as a header itself if the
2328Emacs Lisp file containing it is maintained with version control.
2329
2330@vindex vc-comment-alist
2331 Each header is inserted surrounded by tabs, inside comment delimiters,
2332on a new line at point. Normally the ordinary comment
2333start and comment end strings of the current mode are used, but for
2334certain modes, there are special comment delimiters for this purpose;
2335the variable @code{vc-comment-alist} specifies them. Each element of
2336this list has the form @code{(@var{mode} @var{starter} @var{ender})}.
2337
2338@vindex vc-static-header-alist
2339 The variable @code{vc-static-header-alist} specifies further strings
2340to add based on the name of the buffer. Its value should be a list of
2341elements of the form @code{(@var{regexp} . @var{format})}. Whenever
2342@var{regexp} matches the buffer name, @var{format} is inserted as part
2343of the header. A header line is inserted for each element that matches
2344the buffer name, and for each string specified by
2345@code{vc-header-alist}. The header line is made by processing the
2346string from @code{vc-header-alist} with the format taken from the
2347element. The default value for @code{vc-static-header-alist} is as follows:
2348
2349@example
2350@group
2351(("\\.c$" .
2352 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n\
2353#endif /* lint */\n"))
2354@end group
2355@end example
2356
2357@noindent
2358It specifies insertion of text of this form:
2359
2360@example
2361@group
2362
2363#ifndef lint
2364static char vcid[] = "@var{string}";
2365#endif /* lint */
2366@end group
2367@end example
2368
2369@noindent
2370Note that the text above starts with a blank line.
2371
2372 If you use more than one version header in a file, put them close
2373together in the file. The mechanism in @code{revert-buffer} that
2374preserves markers may not handle markers positioned between two version
2375headers.
2376
2377@node Customizing VC
2378@subsection Customizing VC
2379
ad63cf1d
AS
2380@vindex vc-handled-backends
2381The variable @var{vc-handled-backends} determines which version
2382control systems VC should handle. The default value is @code{(RCS CVS
2383SCCS)}, so it contains all three version systems that are currently
2384supported. If you want VC to ignore one or more of these systems,
2385exclude its name from the list.
2386
2387The order of systems in the list is significant: when you visit a file
2388is registered in more than one system (@pxref{Local Version Control}),
2389VC uses the system that comes first in @var{vc-handled-backends} by
2390default. The order is also significant when you register a file for
2391the first time, @pxref{Registering} for details.
6bf7aab6
DL
2392
2393@menu
ad63cf1d
AS
2394* General VC Options:: Options not specific for any back end system.
2395* RCS Options:: Options for RCS.
2396* CVS Options:: Options for CVS.
2397* SCCS Options:: Options for SCCS.
6bf7aab6
DL
2398@end menu
2399
ad63cf1d
AS
2400@node General VC Options
2401@subsubsection General Options
6bf7aab6
DL
2402
2403@vindex vc-make-backup-files
2404 Emacs normally does not save backup files for source files that are
2405maintained with version control. If you want to make backup files even
2406for files that use version control, set the variable
2407@code{vc-make-backup-files} to a non-@code{nil} value.
2408
2409@vindex vc-keep-workfiles
2410 Normally the work file exists all the time, whether it is locked or
2411not. If you set @code{vc-keep-workfiles} to @code{nil}, then checking
2412in a new version with @kbd{C-x C-q} deletes the work file; but any
2413attempt to visit the file with Emacs creates it again. (With CVS, work
2414files are always kept.)
2415
2416@vindex vc-follow-symlinks
2417 Editing a version-controlled file through a symbolic link can be
2418dangerous. It bypasses the version control system---you can edit the
2419file without locking it, and fail to check your changes in. Also,
2420your changes might overwrite those of another user. To protect against
2421this, VC checks each symbolic link that you visit, to see if it points
2422to a file under version control.
2423
2424 The variable @code{vc-follow-symlinks} controls what to do when a
2425symbolic link points to a version-controlled file. If it is @code{nil},
2426VC only displays a warning message. If it is @code{t}, VC automatically
2427follows the link, and visits the real file instead, telling you about
2428this in the echo area. If the value is @code{ask} (the default), VC
2429asks you each time whether to follow the link.
2430
6bf7aab6
DL
2431@vindex vc-suppress-confirm
2432 If @code{vc-suppress-confirm} is non-@code{nil}, then @kbd{C-x C-q}
2433and @kbd{C-x v i} can save the current buffer without asking, and
2434@kbd{C-x v u} also operates without asking for confirmation. (This
2435variable does not affect @kbd{C-x v c}; that operation is so drastic
2436that it should always ask for confirmation.)
2437
2438@vindex vc-command-messages
2439 VC mode does much of its work by running the shell commands for RCS,
2440CVS and SCCS. If @code{vc-command-messages} is non-@code{nil}, VC
2441displays messages to indicate which shell commands it runs, and
2442additional messages when the commands finish.
2443
2444@vindex vc-path
2445 You can specify additional directories to search for version control
2446programs by setting the variable @code{vc-path}. These directories are
2447searched before the usual search path. But the proper files are usually
2448found automatically.
2449
ad63cf1d
AS
2450@node RCS Options
2451@subsubsection Options specific for RCS
2452
2453@cindex non-strict locking (RCS)
2454@cindex locking, non-strict (RCS)
2455 By default, RCS uses locking to coordinate the activities of several
2456users, but there is a mode called @dfn{non-strict locking} in which
2457you can check-in changes without locking the file first. Use
2458@samp{rcs -U} to switch to non-strict locking for a particular file,
2459see the @samp{rcs(1)} manpage for details.
2460
2461 When deducing the version control state of a file, VC first looks
2462for an RCS version header string in the file (@pxref{Version
2463Headers}). If there is no header string, VC normally looks at the
2464file permissions of the work file; this is fast. But there might be
2465situations when the file permissions cannot be trusted. In this case
2466the master file has to be consulted, which is rather expensive. Also
2467the master file can only tell you @emph{if} there's any lock on the
2468file, but not whether your work file really contains that locked
2469version.
2470
2471@vindex vc-consult-headers
2472 You can tell VC not to use version headers to determine the file
2473status by setting @code{vc-consult-headers} to @code{nil}. VC then
2474always uses the file permissions (if it can trust them), or else
2475checks the master file.
2476
2477@vindex vc-mistrust-permissions
2478 You can specify the criterion for whether to trust the file
2479permissions by setting the variable @code{vc-mistrust-permissions}.
2480Its value can be @code{t} (always mistrust the file permissions and
2481check the master file), @code{nil} (always trust the file
2482permissions), or a function of one argument which makes the decision.
2483The argument is the directory name of the @file{RCS} subdirectory. A
2484non-@code{nil} value from the function says to mistrust the file
2485permissions. If you find that the file permissions of work files are
2486changed erroneously, set @code{vc-mistrust-permissions} to @code{t}.
2487Then VC always checks the master file to determine the file's status.
2488
2489@node CVS Options
2490@subsubsection Options specific for CVS
2491
2492@cindex locking (CVS)
2493 By default, CVS does not use locking to coordinate the activities of
2494several users; anyone can change a work file at any time. However,
2495there are ways to restrict this, resulting in behavior that resembles
2496locking.
2497
2498@cindex CVSREAD environment variable (CVS)
2499 For one thing, you can set the @env{CVSREAD} environment variable to
2500an arbitrary value. If this variable is defined, CVS makes your work
2501files read-only by default. In Emacs, you must type @kbd{C-x C-q} to
2502make the file writeable, so that editing works in fact similar as if
2503locking was used. Note however, that no actual locking is performed, so
2504several users can make their files writeable at the same time. When
2505setting @env{CVSREAD} for the first time, make sure to check out all
2506your modules anew, so that the file protections are set correctly.
2507
2508@cindex cvs watch feature
2509@cindex watching files (CVS)
2510 Another way to achieve something similar to locking is to use the
2511@dfn{watch} feature of CVS. If a file is being watched, CVS makes it
2512read-only by default, and you must also use @kbd{C-x C-q} in Emacs to
2513make it writable. VC calls @code{cvs edit} to make the file writeable,
2514and CVS takes care to notify other developers of the fact that you
2515intend to change the file. See the CVS documentation for details on
2516using the watch feature.
2517
2518@vindex vc-cvs-stay-local
2519@cindex remote repositories (CVS)
2520 When a file's repository is on a remote machine, VC tries to keep
2521network interactions to a minimum. This is controlled by the variable
2522@var{vc-cvs-stay-local}. If it is @code{t}, then VC uses only the
2523entry in the local CVS subdirectory to determine the file's state (and
2524possibly information returned by previous CVS commands). One
2525consequence of this is that when you have modified a file, and
2526somebody else has already checked in other changes to the file, you
2527are not notified of it until you actually try to commit. (But you can
2528try to pick up any recent changes from the repository first, using
2529@kbd{C-x v m RET}, @pxref{Merging}).
2530
2531 When @var{vc-cvs-stay-local} is @code{t}, VC also makes local
2532version backups, so that simple diff and revert operations are
2533completely local (@pxref{Version Backups}).
2534
2535 On the other hand, if you set @var{vc-cvs-stay-local} to @code{nil},
2536then VC queries the remote repository @emph{before} it decides what to
2537do in @code{vc-next-action} (@kbd{C-x v v}), just as it does for local
2538repositories. It also does not make any version backups.
2539
2540 You can also set @var{vc-cvs-stay-local} to a regexp that is matched
2541against the repository hostname; VC then stays local only for
2542repositories from hosts that match the pattern.
2543
2544@node SCCS Options
2545@subsubsection Options specific for SCCS
2546
2547VC determines the version control state of files under SCCS similar as
2548under RCS. It does not consider SCCS version headers, though. Thus,
2549the variable @var{vc-mistrust-permissions} is used in the same way as
2550under RCS, @pxref{RCS Options} for details.
2551
2552
6bf7aab6
DL
2553@node Directories
2554@section File Directories
2555
2556@cindex file directory
2557@cindex directory listing
2558 The file system groups files into @dfn{directories}. A @dfn{directory
2559listing} is a list of all the files in a directory. Emacs provides
2560commands to create and delete directories, and to make directory
2561listings in brief format (file names only) and verbose format (sizes,
2562dates, and authors included). There is also a directory browser called
2563Dired; see @ref{Dired}.
2564
2565@table @kbd
2566@item C-x C-d @var{dir-or-pattern} @key{RET}
2567Display a brief directory listing (@code{list-directory}).
2568@item C-u C-x C-d @var{dir-or-pattern} @key{RET}
2569Display a verbose directory listing.
2570@item M-x make-directory @key{RET} @var{dirname} @key{RET}
2571Create a new directory named @var{dirname}.
2572@item M-x delete-directory @key{RET} @var{dirname} @key{RET}
2573Delete the directory named @var{dirname}. It must be empty,
2574or you get an error.
2575@end table
2576
2577@findex list-directory
2578@kindex C-x C-d
2579 The command to display a directory listing is @kbd{C-x C-d}
2580(@code{list-directory}). It reads using the minibuffer a file name
2581which is either a directory to be listed or a wildcard-containing
2582pattern for the files to be listed. For example,
2583
2584@example
2585C-x C-d /u2/emacs/etc @key{RET}
2586@end example
2587
2588@noindent
2589lists all the files in directory @file{/u2/emacs/etc}. Here is an
2590example of specifying a file name pattern:
2591
2592@example
2593C-x C-d /u2/emacs/src/*.c @key{RET}
2594@end example
2595
2596 Normally, @kbd{C-x C-d} prints a brief directory listing containing
2597just file names. A numeric argument (regardless of value) tells it to
2598make a verbose listing including sizes, dates, and authors (like
2599@samp{ls -l}).
2600
2601@vindex list-directory-brief-switches
2602@vindex list-directory-verbose-switches
2603 The text of a directory listing is obtained by running @code{ls} in an
2604inferior process. Two Emacs variables control the switches passed to
2605@code{ls}: @code{list-directory-brief-switches} is a string giving the
2606switches to use in brief listings (@code{"-CF"} by default), and
2607@code{list-directory-verbose-switches} is a string giving the switches to
2608use in a verbose listing (@code{"-l"} by default).
2609
2610@node Comparing Files
2611@section Comparing Files
2612@cindex comparing files
2613
2614@findex diff
2615@vindex diff-switches
2616 The command @kbd{M-x diff} compares two files, displaying the
2617differences in an Emacs buffer named @samp{*Diff*}. It works by running
2618the @code{diff} program, using options taken from the variable
2619@code{diff-switches}, whose value should be a string.
2620
2621 The buffer @samp{*Diff*} has Compilation mode as its major mode, so
2622you can use @kbd{C-x `} to visit successive changed locations in the two
2623source files. You can also move to a particular hunk of changes and
2624type @key{RET} or @kbd{C-c C-c}, or click @kbd{Mouse-2} on it, to move
2625to the corresponding source location. You can also use the other
2626special commands of Compilation mode: @key{SPC} and @key{DEL} for
2627scrolling, and @kbd{M-p} and @kbd{M-n} for cursor motion.
2628@xref{Compilation}.
2629
2630@findex diff-backup
2631 The command @kbd{M-x diff-backup} compares a specified file with its most
2632recent backup. If you specify the name of a backup file,
2633@code{diff-backup} compares it with the source file that it is a backup
2634of.
2635
2636@findex compare-windows
2637 The command @kbd{M-x compare-windows} compares the text in the current
2638window with that in the next window. Comparison starts at point in each
2639window, and each starting position is pushed on the mark ring in its
2640respective buffer. Then point moves forward in each window, a character
2641at a time, until a mismatch between the two windows is reached. Then
2642the command is finished. For more information about windows in Emacs,
2643@ref{Windows}.
2644
2645@vindex compare-ignore-case
2646 With a numeric argument, @code{compare-windows} ignores changes in
2647whitespace. If the variable @code{compare-ignore-case} is
2648non-@code{nil}, it ignores differences in case as well.
2649
fa474484
DL
2650@findex diff-mode
2651@cindex diffs
2652@cindex patches
2653@cindex Diff mode
f02d86a3
RS
2654 Differences between versions of files are often distributed as
2655@dfn{patches}, which are the output from @command{diff} or a version
2656control system that uses @command{diff}. @kbd{M-x diff-mode} turns on
2657Diff mode, a major mode for viewing and editing patches, either as
2658``unified diffs'' or ``context diffs.''
fa474484
DL
2659
2660@cindex Smerge mode
2661@findex smerge-mode
2662@cindex failed merges
2663@cindex merges, failed
089d639f 2664@cindex comparing 3 files (@code{diff3})
f02d86a3
RS
2665 You can use @kbd{M-x smerge-mode} to turn on Smerge mode, a minor
2666mode for editing output from the @command{diff3} program. This is
2667typically the result of a failed merge from a version control system
2668``update'' outside VC, due to conflicting changes to a file. Smerge
2669mode provides commands to resolve conflicts by selecting specific
2670changes.
2671
2672 See also @ref{Emerge}, and @ref{Top,,, ediff, The Ediff Manual}, for
2673convenient facilities for merging two similar files.
6bf7aab6
DL
2674
2675@node Misc File Ops
2676@section Miscellaneous File Operations
2677
2678 Emacs has commands for performing many other operations on files.
2679All operate on one file; they do not accept wildcard file names.
2680
2681@findex view-file
2682@cindex viewing
2683@cindex View mode
2684@cindex mode, View
2685 @kbd{M-x view-file} allows you to scan or read a file by sequential
2686screenfuls. It reads a file name argument using the minibuffer. After
2687reading the file into an Emacs buffer, @code{view-file} displays the
2688beginning. You can then type @key{SPC} to scroll forward one windowful,
2689or @key{DEL} to scroll backward. Various other commands are provided
2690for moving around in the file, but none for changing it; type @kbd{?}
2691while viewing for a list of them. They are mostly the same as normal
2692Emacs cursor motion commands. To exit from viewing, type @kbd{q}.
2693The commands for viewing are defined by a special major mode called View
2694mode.
2695
2696 A related command, @kbd{M-x view-buffer}, views a buffer already present
2697in Emacs. @xref{Misc Buffer}.
2698
2699@findex insert-file
2700 @kbd{M-x insert-file} inserts a copy of the contents of the specified
2701file into the current buffer at point, leaving point unchanged before the
2702contents and the mark after them.
2703
2704@findex write-region
2705 @kbd{M-x write-region} is the inverse of @kbd{M-x insert-file}; it
2706copies the contents of the region into the specified file. @kbd{M-x
2707append-to-file} adds the text of the region to the end of the specified
2708file. @xref{Accumulating Text}.
2709
2710@findex delete-file
2711@cindex deletion (of files)
2712 @kbd{M-x delete-file} deletes the specified file, like the @code{rm}
2713command in the shell. If you are deleting many files in one directory, it
2714may be more convenient to use Dired (@pxref{Dired}).
2715
2716@findex rename-file
2717 @kbd{M-x rename-file} reads two file names @var{old} and @var{new} using
2718the minibuffer, then renames file @var{old} as @var{new}. If a file named
2719@var{new} already exists, you must confirm with @kbd{yes} or renaming is not
2720done; this is because renaming causes the old meaning of the name @var{new}
2721to be lost. If @var{old} and @var{new} are on different file systems, the
2722file @var{old} is copied and deleted.
2723
2724@findex add-name-to-file
2725 The similar command @kbd{M-x add-name-to-file} is used to add an
2726additional name to an existing file without removing its old name.
2727The new name must belong on the same file system that the file is on.
2728
2729@findex copy-file
2730@cindex copying files
2731 @kbd{M-x copy-file} reads the file @var{old} and writes a new file named
2732@var{new} with the same contents. Confirmation is required if a file named
2733@var{new} already exists, because copying has the consequence of overwriting
2734the old contents of the file @var{new}.
2735
2736@findex make-symbolic-link
2737 @kbd{M-x make-symbolic-link} reads two file names @var{target} and
2738@var{linkname}, then creates a symbolic link named @var{linkname} and
2739pointing at @var{target}. The effect is that future attempts to open file
2740@var{linkname} will refer to whatever file is named @var{target} at the
2741time the opening is done, or will get an error if the name @var{target} is
2742not in use at that time. This command does not expand the argument
2743@var{target}, so that it allows you to specify a relative name
2744as the target of the link.
2745
2746 Confirmation is required when creating the link if @var{linkname} is
2747in use. Note that not all systems support symbolic links.
2748
2749@node Compressed Files
2750@section Accessing Compressed Files
2751@cindex compression
2752@cindex uncompression
2753@cindex Auto Compression mode
2754@cindex mode, Auto Compression
2755@pindex gzip
2756
2757@findex auto-compression-mode
259a88ca 2758@vindex auto-compression-mode
6bf7aab6
DL
2759 Emacs comes with a library that can automatically uncompress
2760compressed files when you visit them, and automatically recompress them
2761if you alter them and save them. To enable this feature, type the
259a88ca
DL
2762command @kbd{M-x auto-compression-mode}. You can enable it permanently
2763by customizing the option @var{auto-compression-mode}.
6bf7aab6
DL
2764
2765 When automatic compression (which implies automatic uncompression as
2766well) is enabled, Emacs recognizes compressed files by their file names.
2767File names ending in @samp{.gz} indicate a file compressed with
2768@code{gzip}. Other endings indicate other compression programs.
2769
2770 Automatic uncompression and compression apply to all the operations in
2771which Emacs uses the contents of a file. This includes visiting it,
2772saving it, inserting its contents into a buffer, loading it, and byte
2773compiling it.
2774
259a88ca
DL
2775@node File Archives
2776@section File Archives
2777@cindex mode, tar
2778@cindex Tar mode
089d639f 2779@cindex file archives
259a88ca 2780
f02d86a3
RS
2781 A file whose name ends in @samp{.tar} is normally an @dfn{archive}
2782made by the @code{tar} program. Emacs views these files in a special
2783mode called Tar mode which provides a Dired-like list of the contents
2784(@pxref{Dired}). You can move around through the list just as you
2785would in Dired, and visit the subfiles contained in the archive.
2786However, not all Dired commands are available in Tar mode.
2787
2788 If you enable Auto Compression mode (@pxref{Compressed Files}), then
2789Tar mode is used also for compressed archives---files with extensions
2790@samp{.tgz}, @code{.tar.Z} and @code{.tar.gz}.
259a88ca 2791
366f22ff 2792 The keys @kbd{e}, @kbd{f} and @kbd{RET} all extract a component file
259a88ca 2793into its own buffer. You can edit it there and when you save the buffer
366f22ff
EZ
2794the edited version will replace the version in the Tar buffer. @kbd{v}
2795extracts a file into a buffer in View mode. @kbd{o} extracts the file
2796and displays it in another window, so you could edit the file and
2797operate on the archive simultaneously. @kbd{d} marks a file for
2798deletion when you later use @kbd{x}, and @kbd{u} unmarks a file, as in
2799Dired. @kbd{C} copies a file from the archive to disk and @kbd{R}
2800renames a file. @kbd{g} reverts the buffer from the archive on disk.
2801
2802 The keys @kbd{M}, @kbd{G}, and @kbd{O} change the file's permission
2803bits, group, and owner, respectively.
2804
2805 If your display supports colors and the mouse, moving the mouse
2806pointer across a file name highlights that file name, indicating that
2807you can click on it. Clicking @kbd{Mouse-2} on the highlighted file
2808name extracts the file into a buffer and displays that buffer.
2809
2810 Saving the Tar buffer writes a new version of the archive to disk with
259a88ca
DL
2811the changes you made to the components.
2812
f02d86a3
RS
2813 You don't need the @code{tar} program to use Tar mode---Emacs reads
2814the archives directly. However, accessing compressed archives
2815requires the appropriate uncompression program.
fa474484 2816
366f22ff
EZ
2817@cindex Archive mode
2818@cindex mode, archive
259a88ca
DL
2819@cindex @code{arc}
2820@cindex @code{jar}
2821@cindex @code{zip}
2822@cindex @code{lzh}
2823@cindex @code{zoo}
259a88ca
DL
2824@pindex arc
2825@pindex jar
2826@pindex zip
2827@pindex lzh
2828@pindex zoo
2829@cindex Java class archives
366f22ff
EZ
2830@cindex unzip archives
2831 A separate but similar Archive mode is used for archives produced by
f02d86a3
RS
2832the programs @code{arc}, @code{jar}, @code{lzh}, @code{zip}, and
2833@code{zoo}, which have extensions corresponding to the program names.
366f22ff 2834
f02d86a3
RS
2835 The keybindings of Archive mode are similar to those in Tar mode,
2836with the addition of the @kbd{m} key which marks a file for subsequent
366f22ff 2837operations, and @kbd{M-@key{DEL}} which unmarks all the marked files.
f02d86a3
RS
2838Also, the @kbd{a} key toggles the display of detailed file
2839information, for those archive types where it won't fit in a single
2840line. Operations such as renaming a subfile, or changing its mode or
2841owner, are supported only for some of the archive formats.
366f22ff 2842
f02d86a3
RS
2843 Unlike Tar mode, Archive mode runs the archiving program to unpack
2844and repack archives. Details of the program names and their options
2845can be set in the @samp{Archive} Customize group. However, you don't
2846need these programs to the archive table of contents, only to extract
2847or manipulate the subfiles in the archive.
259a88ca 2848
6bf7aab6
DL
2849@node Remote Files
2850@section Remote Files
2851
2852@cindex FTP
2853@cindex remote file access
2854 You can refer to files on other machines using a special file name syntax:
2855
2856@example
2857@group
2858/@var{host}:@var{filename}
2859/@var{user}@@@var{host}:@var{filename}
4f36dd62 2860/@var{user}@@@var{host}#@var{port}:@var{filename}
6bf7aab6
DL
2861@end group
2862@end example
2863
2864@noindent
2865When you do this, Emacs uses the FTP program to read and write files on
2866the specified host. It logs in through FTP using your user name or the
2867name @var{user}. It may ask you for a password from time to time; this
4f36dd62
DL
2868is used for logging in on @var{host}. The form using @var{port} allows
2869you to access servers running on a non-default TCP port.
6bf7aab6 2870
436b2c06
EZ
2871@cindex backups for remote files
2872@vindex ange-ftp-make-backup-files
2873 If you want to disable backups for remote files, set the variable
2874@code{ange-ftp-make-backup-files} to @code{nil}.
2875
6bf7aab6
DL
2876@cindex ange-ftp
2877@vindex ange-ftp-default-user
436b2c06 2878@cindex user name for remote file access
6bf7aab6
DL
2879 Normally, if you do not specify a user name in a remote file name,
2880that means to use your own user name. But if you set the variable
2881@code{ange-ftp-default-user} to a string, that string is used instead.
2882(The Emacs package that implements FTP file access is called
2883@code{ange-ftp}.)
2884
436b2c06
EZ
2885@cindex anonymous FTP
2886@vindex ange-ftp-generate-anonymous-password
2887 To visit files accessible by anonymous FTP, you use special user
697e2b99
RS
2888names @samp{anonymous} or @samp{ftp}. Passwords for these user names
2889are handled specially. The variable
436b2c06
EZ
2890@code{ange-ftp-generate-anonymous-password} controls what happens: if
2891the value of this variable is a string, then that string is used as
2892the password; if non-@code{nil} (the default), then the value of
2893@code{user-mail-address} is used; if @code{nil}, the user is prompted
2894for a password as normal.
2895
2896@cindex firewall, and accessing remote files
2897@cindex gateway, and remote file access with @code{ange-ftp}
2898@vindex ange-ftp-smart-gateway
2899@vindex ange-ftp-gateway-host
2900 Sometimes you may be unable to access files on a remote machine
f02d86a3
RS
2901because a @dfn{firewall} in between blocks the connection for security
2902reasons. If you can log in on a @dfn{gateway} machine from which the
2903target files @emph{are} accessible, and whose FTP server supports
2904gatewaying features, you can still use remote file names; all you have
2905to do is specify the name of the gateway machine by setting the
2906variable @code{ange-ftp-gateway-host}, and set
2907@code{ange-ftp-smart-gateway} to @code{t}. Otherwise you may be able
2908to make remote file names work, but the procedure is complex. You can
2909read the instructions by typing @kbd{M-x finder-commentary @key{RET}
2910ange-ftp @key{RET}}.
436b2c06 2911
6bf7aab6 2912@vindex file-name-handler-alist
f02d86a3 2913@cindex disabling remote files
4f36dd62
DL
2914 You can entirely turn off the FTP file name feature by removing the
2915entries @var{ange-ftp-completion-hook-function} and
2916@var{ange-ftp-hook-function} from the variable
7ed32bd8
DL
2917@code{file-name-handler-alist}. You can turn off the feature in
2918individual cases by quoting the file name with @samp{/:} (@pxref{Quoted
2919File Names}).
6bf7aab6
DL
2920
2921@node Quoted File Names
2922@section Quoted File Names
2923
2924@cindex quoting file names
2925 You can @dfn{quote} an absolute file name to prevent special
2926characters and syntax in it from having their special effects.
2927The way to do this is to add @samp{/:} at the beginning.
2928
2929 For example, you can quote a local file name which appears remote, to
2930prevent it from being treated as a remote file name. Thus, if you have
2931a directory named @file{/foo:} and a file named @file{bar} in it, you
2932can refer to that file in Emacs as @samp{/:/foo:/bar}.
2933
2934 @samp{/:} can also prevent @samp{~} from being treated as a special
2935character for a user's home directory. For example, @file{/:/tmp/~hack}
2936refers to a file whose name is @file{~hack} in directory @file{/tmp}.
2937
2938 Likewise, quoting with @samp{/:} is one way to enter in the minibuffer
2939a file name that contains @samp{$}. However, the @samp{/:} must be at
2940the beginning of the buffer in order to quote @samp{$}.
2941
2942 You can also quote wildcard characters with @samp{/:}, for visiting.
2943For example, @file{/:/tmp/foo*bar} visits the file @file{/tmp/foo*bar}.
2944However, in most cases you can simply type the wildcard characters for
2945themselves. For example, if the only file name in @file{/tmp} that
2946starts with @samp{foo} and ends with @samp{bar} is @file{foo*bar}, then
2947specifying @file{/tmp/foo*bar} will visit just @file{/tmp/foo*bar}.
7ed32bd8 2948Another way is to specify @file{/tmp/foo[*]bar}.
9a98ef18 2949
f02d86a3
RS
2950@node File Name Cache
2951@section File Name Cache
2952
2953@cindex file name caching
2954@cindex cache of file names
2955@pindex find
2956@kindex C-@key{TAB}
2957@findex file-cache-minibuffer-complete
2958 You can use the @dfn{file name cache} to make it easy to locate a
2959file by name, without having to remember exactly where it is located.
2960When typing a file name in the minibuffer, @kbd{C-@key{tab}}
2961(@code{file-cache-minibuffer-complete}) completes it using the file
2962name cache. If you repeat @kbd{C-@key{tab}}, that cycles through the
2963possible completions of what you had originally typed. Note that the
2964@kbd{C-@key{tab}} character cannot be typed on most text-only
2965terminals.
2966
2967 The file name cache does not fill up automatically. Instead, you
2968load file names into the cache using these commands:
9a98ef18 2969
f02d86a3 2970@findex file-cache-add-directory
fa474484 2971@table @kbd
fa474484 2972@item M-x file-cache-add-directory @key{RET} @var{directory} @key{RET}
f02d86a3
RS
2973Add each file name in @var{directory} to the file name cache.
2974@item M-x file-cache-add-directory-using-find @key{RET} @var{directory} @key{RET}
2975Add each file name in @var{directory} and all of its nested
2976subdirectories to the file name cache.
2977@item M-x file-cache-add-directory-using-locate @key{RET} @var{directory} @key{RET}
2978Add each file name in @var{directory} and all of its nested
2979subdirectories to the file name cache, using @command{locate} to find
2980them all.
2981@item M-x file-cache-add-directory-list @key{RET} @var{variable} @key{RET}
2982Add each file name in each directory listed in @var{variable}
2983to the file name cache. @var{variable} should be a Lisp variable
2984such as @code{load-path} or @code{exec-path}, whose value is a list
2985of directory names.
2986@item M-x file-cache-clear-cache @key{RET}
2987Clear the cache; that is, remove all file names from it.
fa474484 2988@end table
9a98ef18 2989
f02d86a3
RS
2990@node File Conveniences
2991@section Convenience Features for Finding Files
fa474484
DL
2992
2993@findex recentf-mode
2994@vindex recentf-mode
2995@findex recentf-save-list
2996@findex recentf-edit-list
f02d86a3
RS
2997 If you enable Recentf mode, with @kbd{M-x recentf-mode}, the
2998@samp{Files} menu includes a submenu containing a list of recently
2999opened files. @kbd{M-x recentf-save-list} saves the current
3000recent-file-list to a file, and @kbd{M-x recentf-edit-list} edits it.
0d7a07f3
DL
3001
3002@findex auto-image-file-mode
3003@findex mode, auto-image-file
3004@cindex images, visiting
3005@cindex visiting image files
3006@vindex image-file-name-regexps
3007@vindex image-file-name-extensions
f02d86a3
RS
3008 When Auto-image-file minor mode is enabled, visiting an image file
3009displays it as an image, not as text. Likewise, inserting an image
3010file into a buffer inserts it as an image. This works only when Emacs
3011can display the relevant image type. The variables
3012@code{image-file-name-extensions} or @code{image-file-name-regexps}
3013control which file names are recognized as containing images.
3014
3015 The @kbd{M-x ffap} command generalizes @code{find-file} with more
3016powerful heuristic defaults (@pxref{FFAP}), often based on the text at
3017point. Partial Completion mode offers other features extending
3018@code{find-file}, which can be used with @code{ffap}.
3019@xref{Completion Options}.