]> code.delx.au - gnu-emacs/blob - doc/emacs/maintaining.texi
Merge branch 'scratch/follow' into emacs-25
[gnu-emacs] / doc / emacs / maintaining.texi
1 @c This is part of the Emacs manual., Abbrevs, This is part of the Emacs manual., Top
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 1999-2015 Free Software
3 @c Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Maintaining
6 @chapter Maintaining Large Programs
7
8 This chapter describes Emacs features for maintaining large
9 programs. If you are maintaining a large Lisp program, then in
10 addition to the features described here, you may find
11 the Emacs Lisp Regression Testing (ERT) library useful
12 (@pxref{Top,,ERT,ert, Emacs Lisp Regression Testing}).
13
14 @menu
15 * Version Control:: Using version control systems.
16 * Change Log:: Maintaining a change history for your program.
17 * Tags:: Go directly to any function in your program in one
18 command. Tags remembers which file it is in.
19 * EDE:: An integrated development environment for Emacs.
20 @ifnottex
21 * Emerge:: A convenient way of merging two versions of a program.
22 @end ifnottex
23 @end menu
24
25 @node Version Control
26 @section Version Control
27 @cindex version control
28
29 A @dfn{version control system} is a program that can record multiple
30 versions of a source file, storing information such as the creation
31 time of each version, who made it, and a description of what was
32 changed.
33
34 The Emacs version control interface is called @dfn{VC}@. VC
35 commands work with several different version control systems;
36 currently, it supports Bazaar, CVS, Git, Mercurial, Monotone, RCS,
37 SCCS/CSSC, and Subversion. Of these, the GNU project distributes CVS,
38 RCS, and Bazaar.
39
40 VC is enabled automatically whenever you visit a file governed by a
41 version control system. To disable VC entirely, set the customizable
42 variable @code{vc-handled-backends} to @code{nil}
43 @iftex
44 (@pxref{Customizing VC,,,emacs-xtra, Specialized Emacs Features}).
45 @end iftex
46 @ifnottex
47 (@pxref{Customizing VC}).
48 @end ifnottex
49
50 @findex vc-refresh-state
51 @findex vc-state-refresh
52 To update the VC state information for the file visited in the
53 current buffer, use the command @code{vc-refresh-state}. This command
54 is useful when you perform version control commands outside Emacs
55 (e.g., from the shell prompt), or if you put the buffer's file under a
56 different version control system, or remove it from version control
57 entirely. A companion command @code{vc-state-refresh} does the same,
58 but does not consider switching the version control system or removal
59 from VC.
60
61 @menu
62 * Introduction to VC:: How version control works in general.
63 * VC Mode Line:: How the mode line shows version control status.
64 * Basic VC Editing:: How to edit a file under version control.
65 * Log Buffer:: Features available in log entry buffers.
66 * Registering:: Putting a file under version control.
67 * Old Revisions:: Examining and comparing old versions.
68 * VC Change Log:: Viewing the VC Change Log.
69 * VC Undo:: Canceling changes before or after committing.
70 * VC Ignore:: Ignore files under version control system.
71 * VC Directory Mode:: Listing files managed by version control.
72 * Branches:: Multiple lines of development.
73 @ifnottex
74 * Miscellaneous VC:: Various other commands and features of VC.
75 * Customizing VC:: Variables that change VC's behavior.
76 @end ifnottex
77 @end menu
78
79 @node Introduction to VC
80 @subsection Introduction to Version Control
81
82 VC allows you to use a version control system from within Emacs,
83 integrating the version control operations smoothly with editing. It
84 provides a uniform interface for common operations in many version
85 control operations.
86
87 Some uncommon or intricate version control operations, such as
88 altering repository settings, are not supported in VC@. You should
89 perform such tasks outside Emacs, e.g., via the command line.
90
91 This section provides a general overview of version control, and
92 describes the version control systems that VC supports. You can skip
93 this section if you are already familiar with the version control system
94 you want to use.
95
96 @menu
97 * Why Version Control?:: Understanding the problems it addresses.
98 * Version Control Systems:: Supported version control back-end systems.
99 * VCS Concepts:: Words and concepts related to version control.
100 * VCS Merging:: How file conflicts are handled.
101 * VCS Changesets:: How changes are grouped.
102 * VCS Repositories:: Where version control repositories are stored.
103 * Types of Log File:: The VCS log in contrast to the ChangeLog.
104 @end menu
105
106 @node Why Version Control?
107 @subsubsection Understanding the problems it addresses
108
109 Version control systems provide you with three important
110 capabilities:
111
112 @itemize @bullet
113 @item
114 @dfn{Reversibility}: the ability to back up to a previous state if you
115 discover that some modification you did was a mistake or a bad idea.
116
117 @item
118 @dfn{Concurrency}: the ability to have many people modifying the same
119 collection of files knowing that conflicting modifications can be
120 detected and resolved.
121
122 @item
123 @dfn{History}: the ability to attach historical data to your data,
124 such as explanatory comments about the intention behind each change to
125 it. Even for a programmer working solo, change histories are an
126 important aid to memory; for a multi-person project, they are a
127 vitally important form of communication among developers.
128 @end itemize
129
130 @node Version Control Systems
131 @subsubsection Supported Version Control Systems
132
133 @cindex back end (version control)
134 VC currently works with many different version control systems,
135 which it refers to as @dfn{back ends}:
136
137 @itemize @bullet
138
139 @cindex SCCS
140 @item
141 SCCS was the first version control system ever built, and was long ago
142 superseded by more advanced ones. VC compensates for certain features
143 missing in SCCS (e.g., tag names for releases) by implementing them
144 itself. Other VC features, such as multiple branches, are simply
145 unavailable. Since SCCS is non-free, we recommend avoiding it.
146
147 @cindex CSSC
148 @item
149 CSSC is a free replacement for SCCS@. You should use CSSC only if, for
150 some reason, you cannot use a more recent and better-designed version
151 control system.
152
153 @cindex RCS
154 @item
155 RCS is the free version control system around which VC was initially
156 built. It is relatively primitive: it cannot be used over the
157 network, and works at the level of individual files. Almost
158 everything you can do with RCS can be done through VC.
159
160 @cindex CVS
161 @item
162 CVS is the free version control system that was, until recently (circa
163 2008), used by the majority of free software projects. Nowadays, it
164 is slowly being superseded by newer systems. CVS allows concurrent
165 multi-user development either locally or over the network. Unlike
166 newer systems, it lacks support for atomic commits and file
167 moving/renaming. VC supports all basic editing operations under CVS.
168
169 @cindex SVN
170 @cindex Subversion
171 @item
172 Subversion (svn) is a free version control system designed to be
173 similar to CVS but without its problems (e.g., it supports atomic
174 commits of filesets, and versioning of directories, symbolic links,
175 meta-data, renames, copies, and deletes).
176
177 @cindex git
178 @item
179 Git is a decentralized version control system originally invented by
180 Linus Torvalds to support development of Linux (his kernel). VC
181 supports many common Git operations, but others, such as repository
182 syncing, must be done from the command line.
183
184 @cindex hg
185 @cindex Mercurial
186 @item
187 Mercurial (hg) is a decentralized version control system broadly
188 resembling Git. VC supports most Mercurial commands, with the
189 exception of repository sync operations.
190
191 @cindex bzr
192 @cindex Bazaar
193 @item
194 Bazaar (bzr) is a decentralized version control system that supports
195 both repository-based and decentralized versioning. VC supports most
196 basic editing operations under Bazaar.
197
198 @cindex SRC
199 @cindex src
200 @item
201 SRC (src) is RCS, reloaded - a specialized version-control system
202 designed for single-file projects worked on by only one person. It
203 allows multiple files with independent version-control histories to
204 exist in one directory, and is thus particularly well suited for
205 maintaining small documents, scripts, and dotfiles. While it uses RCS
206 for revision storage, it presents a modern user interface featuring
207 lockless operation and integer sequential version numbers. VC
208 supports almost all SRC operations.
209 @end itemize
210
211 @node VCS Concepts
212 @subsubsection Concepts of Version Control
213
214 @cindex repository
215 @cindex registered file
216 When a file is under version control, we say that it is
217 @dfn{registered} in the version control system. The system has a
218 @dfn{repository} which stores both the file's present state and its
219 change history---enough to reconstruct the current version or any
220 earlier version. The repository also contains other information, such
221 as @dfn{log entries} that describe the changes made to each file.
222
223 @cindex work file
224 @cindex checking out files
225 The copy of a version-controlled file that you actually edit is
226 called the @dfn{work file}. You can change each work file as you
227 would an ordinary file. After you are done with a set of changes, you
228 may @dfn{commit} (or @dfn{check in}) the changes; this records the
229 changes in the repository, along with a descriptive log entry.
230
231 @cindex working tree
232 A directory tree of work files is called a @dfn{working tree}.
233
234 @cindex revision
235 @cindex revision ID
236 Each commit creates a new @dfn{revision} in the repository. The
237 version control system keeps track of all past revisions and the
238 changes that were made in each revision. Each revision is named by a
239 @dfn{revision ID}, whose format depends on the version control system;
240 in the simplest case, it is just an integer.
241
242 To go beyond these basic concepts, you will need to understand three
243 aspects in which version control systems differ. As explained in the
244 next three sections, they can be lock-based or merge-based; file-based
245 or changeset-based; and centralized or decentralized. VC handles all
246 these modes of operation, but it cannot hide the differences.
247
248 @node VCS Merging
249 @subsubsection Merge-based vs lock-based Version Control
250
251 A version control system typically has some mechanism to coordinate
252 between users who want to change the same file. There are two ways to
253 do this: merging and locking.
254
255 @cindex merging-based version
256 In a version control system that uses merging, each user may modify
257 a work file at any time. The system lets you @dfn{merge} your work
258 file, which may contain changes that have not been committed, with the
259 latest changes that others have committed.
260
261 @cindex locking-based version
262 Older version control systems use a @dfn{locking} scheme instead.
263 Here, work files are normally read-only. To edit a file, you ask the
264 version control system to make it writable for you by @dfn{locking}
265 it; only one user can lock a given file at any given time. This
266 procedure is analogous to, but different from, the locking that Emacs
267 uses to detect simultaneous editing of ordinary files
268 (@pxref{Interlocking}). When you commit your changes, that unlocks
269 the file, and the work file becomes read-only again. Other users may
270 then lock the file to make their own changes.
271
272 Both locking and merging systems can have problems when multiple
273 users try to modify the same file at the same time. Locking systems
274 have @dfn{lock conflicts}; a user may try to check a file out and be
275 unable to because it is locked. In merging systems, @dfn{merge
276 conflicts} happen when you commit a change to a file that conflicts
277 with a change committed by someone else after your checkout. Both
278 kinds of conflict have to be resolved by human judgment and
279 communication. Experience has shown that merging is superior to
280 locking, both in convenience to developers and in minimizing the
281 number and severity of conflicts that actually occur.
282
283 SCCS always uses locking. RCS is lock-based by default but can be
284 told to operate in a merging style. CVS and Subversion are
285 merge-based by default but can be told to operate in a locking mode.
286 Decentralized version control systems, such as Git and Mercurial, are
287 exclusively merging-based.
288
289 VC mode supports both locking and merging version control. The
290 terms ``commit'' and ``update'' are used in newer version control
291 systems; older lock-based systems use the terms ``check in'' and
292 ``check out''. VC hides the differences between them as much as
293 possible.
294
295 @node VCS Changesets
296 @subsubsection Changeset-based vs File-based Version Control
297
298 @cindex file-based version control
299 On SCCS, RCS, CVS, and other early version control systems, version
300 control operations are @dfn{file-based}: each file has its own comment
301 and revision history separate from that of all other files. Newer
302 systems, beginning with Subversion, are @dfn{changeset-based}: a
303 commit may include changes to several files, and the entire set of
304 changes is handled as a unit. Any comment associated with the change
305 does not belong to a single file, but to the changeset itself.
306
307 @cindex changeset-based version control
308 Changeset-based version control is more flexible and powerful than
309 file-based version control; usually, when a change to multiple files
310 has to be reversed, it's good to be able to easily identify and remove
311 all of it.
312
313 @node VCS Repositories
314 @subsubsection Decentralized vs Centralized Repositories
315
316 @cindex centralized version control
317 @cindex decentralized version control
318 @cindex distributed version control
319 Early version control systems were designed around a
320 @dfn{centralized} model in which each project has only one repository
321 used by all developers. SCCS, RCS, CVS, and Subversion share this
322 kind of model. One of its drawbacks is that the repository is a choke
323 point for reliability and efficiency.
324
325 GNU Arch pioneered the concept of @dfn{distributed} or
326 @dfn{decentralized} version control, later implemented in Git,
327 Mercurial, and Bazaar. A project may have several different
328 repositories, and these systems support a sort of super-merge between
329 repositories that tries to reconcile their change histories. In
330 effect, there is one repository for each developer, and repository
331 merges take the place of commit operations.
332
333 VC helps you manage the traffic between your personal workfiles and
334 a repository. Whether the repository is a single master, or one of a
335 network of peer repositories, is not something VC has to care about.
336
337 @node Types of Log File
338 @subsubsection Types of Log File
339 @cindex types of log file
340 @cindex log File, types of
341 @cindex version control log
342
343 Projects that use a version control system can have two types of log
344 for changes. One is the log maintained by the version control system:
345 each time you commit a change, you fill out a @dfn{log entry} for the
346 change (@pxref{Log Buffer}). This is called the @dfn{version control
347 log}.
348
349 The other kind of log is the file @file{ChangeLog} (@pxref{Change
350 Log}). It provides a chronological record of all changes to a large
351 portion of a program---typically one directory and its subdirectories.
352 A small program would use one @file{ChangeLog} file; a large program
353 may have a @file{ChangeLog} file in each major directory.
354 @xref{Change Log}. Programmers have used change logs since long
355 before version control systems.
356
357 Changeset-based version systems typically maintain a changeset-based
358 modification log for the entire system, which makes change log files
359 somewhat redundant. One advantage that they retain is that it is
360 sometimes useful to be able to view the transaction history of a
361 single directory separately from those of other directories. Another
362 advantage is that commit logs can't be fixed in many version control
363 systems.
364
365 A project maintained with version control can use just the version
366 control log, or it can use both kinds of logs. It can handle some
367 files one way and some files the other way. Each project has its
368 policy, which you should follow.
369
370 When the policy is to use both, you typically want to write an entry
371 for each change just once, then put it into both logs. You can write
372 the entry in @file{ChangeLog}, then copy it to the log buffer with
373 @kbd{C-c C-a} when committing the change (@pxref{Log Buffer}). Or you
374 can write the entry in the log buffer while committing the change, and
375 later use the @kbd{C-x v a} command to copy it to @file{ChangeLog}
376 @iftex
377 (@pxref{Change Logs and VC,,,emacs-xtra, Specialized Emacs Features}).
378 @end iftex
379 @ifnottex
380 (@pxref{Change Logs and VC}).
381 @end ifnottex
382
383 @node VC Mode Line
384 @subsection Version Control and the Mode Line
385 @cindex VC mode line indicator
386
387 When you visit a file that is under version control, Emacs indicates
388 this on the mode line. For example, @samp{Bzr-1223} says that Bazaar
389 is used for that file, and the current revision ID is 1223.
390
391 @cindex version control status
392 The character between the back-end name and the revision ID
393 indicates the @dfn{version control status} of the work file. In a
394 merge-based version control system, a @samp{-} character indicates
395 that the work file is unmodified, and @samp{:} indicates that it has
396 been modified. @samp{!} indicates that the file contains conflicts as
397 result of a recent merge operation (@pxref{Merging}), or that the file
398 was removed from the version control. Finally, @samp{?} means that
399 the file is under version control, but is missing from the working
400 tree.
401
402 In a lock-based system, @samp{-} indicates an unlocked file, and
403 @samp{:} a locked file; if the file is locked by another user (for
404 instance, @samp{jim}), that is displayed as @samp{RCS:jim:1.3}.
405 @samp{@@} means that the file was locally added, but not yet committed
406 to the master repository.
407
408 On a graphical display, you can move the mouse over this mode line
409 indicator to pop up a tool-tip, which displays a more verbose
410 description of the version control status. Pressing @kbd{Mouse-1}
411 over the indicator pops up a menu of VC commands, identical to
412 @samp{Tools / Version Control} on the menu bar.
413
414 @vindex auto-revert-check-vc-info
415 When Auto Revert mode (@pxref{Reverting}) reverts a buffer that is
416 under version control, it updates the version control information in
417 the mode line. However, Auto Revert mode may not properly update this
418 information if the version control status changes without changes to
419 the work file, from outside the current Emacs session. If you set
420 @code{auto-revert-check-vc-info} to @code{t}, Auto Revert mode updates
421 the version control status information every
422 @code{auto-revert-interval} seconds, even if the work file itself is
423 unchanged. The resulting CPU usage depends on the version control
424 system, but is usually not excessive.
425
426 @node Basic VC Editing
427 @subsection Basic Editing under Version Control
428
429 @cindex filesets, VC
430 @cindex VC filesets
431 Most VC commands operate on @dfn{VC filesets}. A VC fileset is a
432 collection of one or more files that a VC operation acts on. When you
433 type VC commands in a buffer visiting a version-controlled file, the
434 VC fileset is simply that one file. When you type them in a VC
435 Directory buffer, and some files in it are marked, the VC fileset
436 consists of the marked files (@pxref{VC Directory Mode}).
437
438 On modern changeset-based version control systems (@pxref{VCS
439 Changesets}), VC commands handle multi-file VC filesets as a group.
440 For example, committing a multi-file VC fileset generates a single
441 revision, containing the changes to all those files. On older
442 file-based version control systems like CVS, each file in a multi-file
443 VC fileset is handled individually; for example, a commit generates
444 one revision for each changed file.
445
446 @table @kbd
447 @item C-x v v
448 Perform the next appropriate version control operation on the current
449 VC fileset.
450 @end table
451
452 @findex vc-next-action
453 @kindex C-x v v
454 The principal VC command is a multi-purpose command, @kbd{C-x v v}
455 (@code{vc-next-action}), which performs the most appropriate
456 action on the current VC fileset: either registering it with a version
457 control system, or committing it, or unlocking it, or merging changes
458 into it. The precise actions are described in detail in the following
459 subsections. You can use @kbd{C-x v v} either in a file-visiting
460 buffer or in a VC Directory buffer.
461
462 Note that VC filesets are distinct from the named filesets used
463 for viewing and visiting files in functional groups
464 (@pxref{Filesets}). Unlike named filesets, VC filesets are not named
465 and don't persist across sessions.
466
467 @menu
468 * VC With A Merging VCS:: Without locking: default mode for CVS.
469 * VC With A Locking VCS:: RCS in its default mode, SCCS, and optionally CVS.
470 * Advanced C-x v v:: Advanced features available with a prefix argument.
471 @end menu
472
473 @node VC With A Merging VCS
474 @subsubsection Basic Version Control with Merging
475
476 On a merging-based version control system (i.e., most modern ones;
477 @pxref{VCS Merging}), @kbd{C-x v v} does the following:
478
479 @itemize @bullet
480 @item
481 If there is more than one file in the VC fileset and the files have
482 inconsistent version control statuses, signal an error. (Note,
483 however, that a fileset is allowed to include both newly-added
484 files and modified files; @pxref{Registering}.)
485
486 @item
487 If none of the files in the VC fileset are registered with a version
488 control system, register the VC fileset, i.e., place it under version
489 control. @xref{Registering}. If Emacs cannot find a system to
490 register under, it prompts for a repository type, creates a new
491 repository, and registers the VC fileset with it.
492
493 @item
494 If every work file in the VC fileset is unchanged, do nothing.
495
496 @item
497 If every work file in the VC fileset has been modified, commit the
498 changes. To do this, Emacs pops up a @file{*vc-log*} buffer; type the
499 desired log entry for the new revision, followed by @kbd{C-c C-c} to
500 commit. @xref{Log Buffer}.
501
502 If committing to a shared repository, the commit may fail if the
503 repository that has been changed since your last update. In that
504 case, you must perform an update before trying again. On a
505 decentralized version control system, use @kbd{C-x v +}
506 (@pxref{Pulling / Pushing}) or @kbd{C-x v m} (@pxref{Merging}).
507 On a centralized version control system, type @kbd{C-x v v} again to
508 merge in the repository changes.
509
510 @item
511 Finally, if you are using a centralized version control system, check
512 if each work file in the VC fileset is up-to-date. If any file has
513 been changed in the repository, offer to update it.
514 @end itemize
515
516 These rules also apply when you use RCS in its non-locking mode,
517 except that changes are not automatically merged from the repository.
518 Nothing informs you if another user has committed changes in the same
519 file since you began editing it; when you commit your revision, his
520 changes are removed (however, they remain in the repository and are
521 thus not irrevocably lost). Therefore, you must verify that the
522 current revision is unchanged before committing your changes. In
523 addition, locking is possible with RCS even in this mode: @kbd{C-x v
524 v} with an unmodified file locks the file, just as it does with RCS in
525 its normal locking mode (@pxref{VC With A Locking VCS}).
526
527 @node VC With A Locking VCS
528 @subsubsection Basic Version Control with Locking
529
530 On a locking-based version control system (such as SCCS, and RCS in
531 its default mode), @kbd{C-x v v} does the following:
532
533 @itemize @bullet
534 @item
535 If there is more than one file in the VC fileset and the files have
536 inconsistent version control statuses, signal an error.
537
538 @item
539 If each file in the VC fileset is not registered with a version
540 control system, register the VC fileset. @xref{Registering}. If
541 Emacs cannot find a system to register under, it prompts for a
542 repository type, creates a new repository, and registers the VC
543 fileset with it.
544
545 @item
546 If each file is registered and unlocked, lock it and make it writable,
547 so that you can begin to edit it.
548
549 @item
550 If each file is locked by you and contains changes, commit the
551 changes. To do this, Emacs pops up a @file{*vc-log*} buffer; type the
552 desired log entry for the new revision, followed by @kbd{C-c C-c} to
553 commit (@pxref{Log Buffer}).
554
555 @item
556 If each file is locked by you, but you have not changed it, release
557 the lock and make the file read-only again.
558
559 @item
560 If each file is locked by another user, ask whether you want to
561 steal the lock. If you say yes, the file becomes locked by you,
562 and a warning message is sent to the user who had formerly locked the
563 file.
564 @end itemize
565
566 These rules also apply when you use CVS in locking mode, except
567 that CVS does not support stealing locks.
568
569 @node Advanced C-x v v
570 @subsubsection Advanced Control in @kbd{C-x v v}
571
572 @cindex revision ID in version control
573 When you give a prefix argument to @code{vc-next-action} (@kbd{C-u
574 C-x v v}), it still performs the next logical version control
575 operation, but accepts additional arguments to specify precisely how
576 to do the operation.
577
578 @itemize @bullet
579 @item
580 @cindex specific version control system
581 You can specify the name of a version control system. This is useful
582 if the fileset can be managed by more than one version control system,
583 and Emacs fails to detect the correct one.
584
585 @item
586 Otherwise, if using CVS or RCS, you can specify a revision ID.
587
588 If the fileset is modified (or locked), this makes Emacs commit with
589 that revision ID@. You can create a new branch by supplying an
590 appropriate revision ID (@pxref{Branches}).
591
592 If the fileset is unmodified (and unlocked), this checks the specified
593 revision into the working tree. You can also specify a revision on
594 another branch by giving its revision or branch ID (@pxref{Switching
595 Branches}). An empty argument (i.e., @kbd{C-u C-x v v @key{RET}})
596 checks out the latest (head) revision on the current branch.
597
598 This is silently ignored on a decentralized version control system.
599 Those systems do not let you specify your own revision IDs, nor do
600 they use the concept of checking out individual files.
601 @end itemize
602
603 @node Log Buffer
604 @subsection Features of the Log Entry Buffer
605
606 @cindex C-c C-c @r{(Log Edit mode)}
607 @findex log-edit-done
608 When you tell VC to commit a change, it pops up a buffer named
609 @file{*vc-log*}. In this buffer, you should write a @dfn{log entry}
610 describing the changes you have made (@pxref{Why Version Control?}).
611 After you are done, type @kbd{C-c C-c} (@code{log-edit-done}) to exit
612 the buffer and commit the change, together with your log entry.
613
614 @cindex Log Edit mode
615 @cindex mode, Log Edit
616 @vindex vc-log-mode-hook
617 @c FIXME: Mention log-edit-mode-hook here? --xfq
618 The major mode for the @file{*vc-log*} buffer is Log Edit mode, a
619 variant of Text mode (@pxref{Text Mode}). On entering Log Edit mode,
620 Emacs runs the hooks @code{text-mode-hook} and @code{vc-log-mode-hook}
621 (@pxref{Hooks}).
622
623 In the @file{*vc-log*} buffer, you can write one or more @dfn{header
624 lines}, specifying additional information to be supplied to the
625 version control system. Each header line must occupy a single line at
626 the top of the buffer; the first line that is not a header line is
627 treated as the start of the log entry. For example, the following
628 header line states that the present change was not written by you, but
629 by another developer:
630
631 @smallexample
632 Author: J. R. Hacker <jrh@@example.com>
633 @end smallexample
634
635 @noindent
636 Apart from the @samp{Author} header, Emacs recognizes the headers
637 @samp{Date} (a manually-specified commit time) and @samp{Fixes} (a
638 reference to a bug fixed by the change). Not all version control
639 systems recognize all headers: Bazaar recognizes all three headers,
640 while Git, Mercurial, and Monotone recognize only @samp{Author} and
641 @samp{Date}. If you specify a header for a system that does not
642 support it, the header is treated as part of the log entry.
643
644 @kindex C-c C-f @r{(Log Edit mode)}
645 @findex log-edit-show-files
646 @kindex C-c C-d @r{(Log Edit mode)}
647 @findex log-edit-show-diff
648 While in the @file{*vc-log*} buffer, the current VC fileset is
649 considered to be the fileset that will be committed if you type
650 @w{@kbd{C-c C-c}}. To view a list of the files in the VC fileset,
651 type @w{@kbd{C-c C-f}} (@code{log-edit-show-files}). To view a diff
652 of changes between the VC fileset and the version from which you
653 started editing (@pxref{Old Revisions}), type @kbd{C-c C-d}
654 (@code{log-edit-show-diff}).
655
656 @kindex C-c C-a @r{(Log Edit mode)}
657 @findex log-edit-insert-changelog
658 If the VC fileset includes one or more @file{ChangeLog} files
659 (@pxref{Change Log}), type @kbd{C-c C-a}
660 (@code{log-edit-insert-changelog}) to pull the relevant entries into
661 the @file{*vc-log*} buffer. If the topmost item in each
662 @file{ChangeLog} was made under your user name on the current date,
663 this command searches that item for entries matching the file(s) to be
664 committed, and inserts them.
665 @ifnottex
666 If you are using CVS or RCS, see @ref{Change Logs and VC}, for the
667 opposite way of working---generating ChangeLog entries from the Log
668 Edit buffer.
669 @end ifnottex
670
671 To abort a commit, just @emph{don't} type @kbd{C-c C-c} in that
672 buffer. You can switch buffers and do other editing. As long as you
673 don't try to make another commit, the entry you were editing remains
674 in the @file{*vc-log*} buffer, and you can go back to that buffer at
675 any time to complete the commit.
676
677 @kindex M-n @r{(Log Edit mode)}
678 @kindex M-p @r{(Log Edit mode)}
679 @kindex M-s @r{(Log Edit mode)}
680 @kindex M-r @r{(Log Edit mode)}
681 You can also browse the history of previous log entries to duplicate
682 a commit comment. This can be useful when you want to make several
683 commits with similar comments. The commands @kbd{M-n}, @kbd{M-p},
684 @kbd{M-s} and @kbd{M-r} for doing this work just like the minibuffer
685 history commands (@pxref{Minibuffer History}), except that they are
686 used outside the minibuffer.
687
688 @node Registering
689 @subsection Registering a File for Version Control
690
691 @table @kbd
692 @item C-x v i
693 Register the visited file for version control.
694 @end table
695
696 @kindex C-x v i
697 @findex vc-register
698 The command @kbd{C-x v i} (@code{vc-register}) @dfn{registers} each
699 file in the current VC fileset, placing it under version control.
700 This is essentially equivalent to the action of @kbd{C-x v v} on an
701 unregistered VC fileset (@pxref{Basic VC Editing}), except that if the
702 VC fileset is already registered, @kbd{C-x v i} signals an error
703 whereas @kbd{C-x v v} performs some other action.
704
705 To register a file, Emacs must choose a version control system. For
706 a multi-file VC fileset, the VC Directory buffer specifies the system
707 to use (@pxref{VC Directory Mode}). For a single-file VC fileset, if
708 the file's directory already contains files registered in a version
709 control system, or if the directory is part of a directory tree
710 controlled by a version control system, Emacs chooses that system. In
711 the event that more than one version control system is applicable,
712 Emacs uses the one that appears first in the variable
713 @iftex
714 @code{vc-handled-backends}.
715 @end iftex
716 @ifnottex
717 @code{vc-handled-backends} (@pxref{Customizing VC}).
718 @end ifnottex
719 If Emacs cannot find a version control system to register the file
720 under, it prompts for a repository type, creates a new repository, and
721 registers the file into that repository.
722
723 On most version control systems, registering a file with @kbd{C-x v
724 i} or @kbd{C-x v v} adds it to the working tree but not to the
725 repository. Such files are labeled as @samp{added} in the VC
726 Directory buffer, and show a revision ID of @samp{@@@@} in the mode
727 line. To make the registration take effect in the repository, you
728 must perform a commit (@pxref{Basic VC Editing}). Note that a single
729 commit can include both file additions and edits to existing files.
730
731 On a locking-based version control system (@pxref{VCS Merging}),
732 registering a file leaves it unlocked and read-only. Type @kbd{C-x v
733 v} to start editing it.
734
735 @node Old Revisions
736 @subsection Examining And Comparing Old Revisions
737
738 @table @kbd
739 @item C-x v =
740 Compare the work files in the current VC fileset with the versions you
741 started from (@code{vc-diff}). With a prefix argument, prompt for two
742 revisions of the current VC fileset and compare them. You can also
743 call this command from a Dired buffer (@pxref{Dired}).
744
745 @ifnottex
746 @item M-x vc-ediff
747 Like @kbd{C-x v =}, but using Ediff. @xref{Top,, Ediff, ediff, The
748 Ediff Manual}.
749 @end ifnottex
750
751 @item C-x v D
752 Compare the entire working tree to the revision you started from
753 (@code{vc-root-diff}). With a prefix argument, prompt for two
754 revisions and compare their trees.
755
756 @item C-x v ~
757 Prompt for a revision of the current file, and visit it in a separate
758 buffer (@code{vc-revision-other-window}).
759
760 @item C-x v g
761 Display an annotated version of the current file: for each line, show
762 the latest revision in which it was modified (@code{vc-annotate}).
763 @end table
764
765 @findex vc-diff
766 @kindex C-x v =
767 @kbd{C-x v =} (@code{vc-diff}) displays a @dfn{diff} which compares
768 each work file in the current VC fileset to the version(s) from which
769 you started editing. The diff is displayed in another window, in a
770 Diff mode buffer (@pxref{Diff Mode}) named @file{*vc-diff*}. The
771 usual Diff mode commands are available in this buffer. In particular,
772 the @kbd{g} (@code{revert-buffer}) command performs the file
773 comparison again, generating a new diff.
774
775 @kindex C-u C-x v =
776 To compare two arbitrary revisions of the current VC fileset, call
777 @code{vc-diff} with a prefix argument: @kbd{C-u C-x v =}. This
778 prompts for two revision IDs (@pxref{VCS Concepts}), and displays a
779 diff between those versions of the fileset. This will not work
780 reliably for multi-file VC filesets, if the version control system is
781 file-based rather than changeset-based (e.g., CVS), since then
782 revision IDs for different files would not be related in any
783 meaningful way.
784
785 Instead of the revision ID, some version control systems let you
786 specify revisions in other formats. For instance, under Bazaar you
787 can enter @samp{date:yesterday} for the argument to @kbd{C-u C-x v =}
788 (and related commands) to specify the first revision committed after
789 yesterday. See the documentation of the version control system for
790 details.
791
792 If you invoke @kbd{C-x v =} or @kbd{C-u C-x v =} from a Dired buffer
793 (@pxref{Dired}), the file listed on the current line is treated as the
794 current VC fileset.
795
796 @ifnottex
797 @findex vc-ediff
798 @kbd{M-x vc-ediff} works like @kbd{C-x v =}, except that it uses an
799 Ediff session. @xref{Top,, Ediff, ediff, The Ediff Manual}.
800 @end ifnottex
801
802 @findex vc-root-diff
803 @kindex C-x v D
804 @kbd{C-x v D} (@code{vc-root-diff}) is similar to @kbd{C-x v =}, but
805 it displays the changes in the entire current working tree (i.e., the
806 working tree containing the current VC fileset). If you invoke this
807 command from a Dired buffer, it applies to the working tree containing
808 the directory.
809
810 @vindex vc-diff-switches
811 You can customize the @command{diff} options that @kbd{C-x v =} and
812 @kbd{C-x v D} use for generating diffs. The options used are taken
813 from the first non-@code{nil} value amongst the variables
814 @code{vc-@var{backend}-diff-switches}, @code{vc-diff-switches}, and
815 @code{diff-switches} (@pxref{Comparing Files}), in that order. Here,
816 @var{backend} stands for the relevant version control system,
817 e.g., @code{bzr} for Bazaar. Since @code{nil} means to check the
818 next variable in the sequence, either of the first two may use the
819 value @code{t} to mean no switches at all. Most of the
820 @code{vc-@var{backend}-diff-switches} variables default to @code{nil},
821 but some default to @code{t}; these are for version control systems
822 whose @code{diff} implementations do not accept common diff options,
823 such as Subversion.
824
825 @findex vc-revision-other-window
826 @kindex C-x v ~
827 To directly examine an older version of a file, visit the work file
828 and type @kbd{C-x v ~ @var{revision} @key{RET}}
829 (@code{vc-revision-other-window}). This retrieves the file version
830 corresponding to @var{revision}, saves it to
831 @file{@var{filename}.~@var{revision}~}, and visits it in a separate
832 window.
833
834 @findex vc-annotate
835 @kindex C-x v g
836 Many version control systems allow you to view files @dfn{annotated}
837 with per-line revision information, by typing @kbd{C-x v g}
838 (@code{vc-annotate}). This creates a new ``annotate'' buffer
839 displaying the file's text, with each line colored to show
840 how old it is. Red text is new, blue is old, and intermediate colors
841 indicate intermediate ages. By default, the color is scaled over the
842 full range of ages, such that the oldest changes are blue, and the
843 newest changes are red.
844
845 When you give a prefix argument to this command, Emacs reads two
846 arguments using the minibuffer: the revision to display and annotate
847 (instead of the current file contents), and the time span in days the
848 color range should cover.
849
850 From the ``annotate'' buffer, these and other color scaling options are
851 available from the @samp{VC-Annotate} menu. In this buffer, you can
852 also use the following keys to browse the annotations of past revisions,
853 view diffs, or view log entries:
854
855 @table @kbd
856 @item p
857 Annotate the previous revision, i.e., the revision before the one
858 currently annotated. A numeric prefix argument is a repeat count, so
859 @kbd{C-u 10 p} would take you back 10 revisions.
860
861 @item n
862 Annotate the next revision, i.e., the revision after the one
863 currently annotated. A numeric prefix argument is a repeat count.
864
865 @item j
866 Annotate the revision indicated by the current line.
867
868 @item a
869 Annotate the revision before the one indicated by the current line.
870 This is useful to see the state the file was in before the change on
871 the current line was made.
872
873 @item f
874 Show in a buffer the file revision indicated by the current line.
875
876 @item d
877 Display the diff between the current line's revision and the previous
878 revision. This is useful to see what the current line's revision
879 actually changed in the file.
880
881 @item D
882 Display the diff between the current line's revision and the previous
883 revision for all files in the changeset (for VC systems that support
884 changesets). This is useful to see what the current line's revision
885 actually changed in the tree.
886
887 @item l
888 Show the log of the current line's revision. This is useful to see
889 the author's description of the changes in the revision on the current
890 line.
891
892 @item w
893 Annotate the working revision--the one you are editing. If you used
894 @kbd{p} and @kbd{n} to browse to other revisions, use this key to
895 return to your working revision.
896
897 @item v
898 Toggle the annotation visibility. This is useful for looking just at
899 the file contents without distraction from the annotations.
900 @end table
901
902 @node VC Change Log
903 @subsection VC Change Log
904
905 @table @kbd
906 @item C-x v l
907 Display the change history for the current fileset
908 (@code{vc-print-log}).
909
910 @item C-x v L
911 Display the change history for the current repository
912 (@code{vc-print-root-log}).
913
914 @item C-x v I
915 Display the changes that a ``pull'' operation will retrieve
916 (@code{vc-log-incoming}).
917
918 @item C-x v O
919 Display the changes that will be sent by the next ``push'' operation
920 (@code{vc-log-outgoing}).
921 @end table
922
923 @kindex C-x v l
924 @findex vc-print-log
925 @kbd{C-x v l} (@code{vc-print-log}) displays a buffer named
926 @file{*vc-change-log*}, showing the history of changes made to the
927 current file, including who made the changes, the dates, and the log
928 entry for each change (these are the same log entries you would enter
929 via the @file{*vc-log*} buffer; @pxref{Log Buffer}). Point is
930 centered at the revision of the file currently being visited. With a
931 prefix argument, the command prompts for the revision to center on,
932 and the maximum number of revisions to display.
933
934 If you call @kbd{C-x v l} from a VC Directory buffer (@pxref{VC
935 Directory Mode}) or a Dired buffer (@pxref{Dired}), it applies to the
936 file listed on the current line.
937
938 @findex vc-print-root-log
939 @findex log-view-toggle-entry-display
940 @kbd{C-x v L} (@code{vc-print-root-log}) displays a
941 @file{*vc-change-log*} buffer showing the history of the entire
942 version-controlled directory tree (RCS, SCCS, and CVS do not support
943 this feature). With a prefix argument, the command prompts for the
944 maximum number of revisions to display.
945
946 The @kbd{C-x v L} history is shown in a compact form, usually
947 showing only the first line of each log entry. However, you can type
948 @key{RET} (@code{log-view-toggle-entry-display}) in the
949 @file{*vc-change-log*} buffer to reveal the entire log entry for the
950 revision at point. A second @key{RET} hides it again.
951
952 On a decentralized version control system, the @kbd{C-x v I}
953 (@code{vc-log-incoming}) command displays a log buffer showing the
954 changes that will be applied, the next time you run the version
955 control system's pull command to get new revisions from another
956 repository (@pxref{Pulling / Pushing}). This other repository is the default
957 one from which changes are pulled, as defined by the version control
958 system; with a prefix argument, @code{vc-log-incoming} prompts for a
959 specific repository. Similarly, @kbd{C-x v O}
960 (@code{vc-log-outgoing}) shows the changes that will be sent to
961 another repository, the next time you run the push command; with a
962 prefix argument, it prompts for a specific destination repository.
963
964 In the @file{*vc-change-log*} buffer, you can use the following keys
965 to move between the logs of revisions and of files, and to examine and
966 compare past revisions (@pxref{Old Revisions}):
967
968 @table @kbd
969 @item p
970 Move to the previous revision entry. (Revision entries in the log
971 buffer are usually in reverse-chronological order, so the previous
972 revision-item usually corresponds to a newer revision.) A numeric
973 prefix argument is a repeat count.
974
975 @item n
976 Move to the next revision entry. A numeric prefix argument is a
977 repeat count.
978
979 @item P
980 Move to the log of the previous file, if showing logs for a multi-file
981 VC fileset. Otherwise, just move to the beginning of the log. A
982 numeric prefix argument is a repeat count.
983
984 @item N
985 Move to the log of the next file, if showing logs for a multi-file VC
986 fileset. A numeric prefix argument is a repeat count.
987
988 @item a
989 Annotate the revision on the current line (@pxref{Old Revisions}).
990
991 @item e
992 Modify the change comment displayed at point. Note that not all VC
993 systems support modifying change comments.
994
995 @item f
996 Visit the revision indicated at the current line.
997
998 @item d
999 Display a diff between the revision at point and the next earlier
1000 revision, for the specific file.
1001
1002 @item D
1003 Display the changeset diff between the revision at point and the next
1004 earlier revision. This shows the changes to all files made in that
1005 revision.
1006
1007 @item @key{RET}
1008 In a compact-style log buffer (e.g., the one created by @kbd{C-x v
1009 L}), toggle between showing and hiding the full log entry for the
1010 revision at point.
1011 @end table
1012
1013 @vindex vc-log-show-limit
1014 Because fetching many log entries can be slow, the
1015 @file{*vc-change-log*} buffer displays no more than 2000 revisions by
1016 default. The variable @code{vc-log-show-limit} specifies this limit;
1017 if you set the value to zero, that removes the limit. You can also
1018 increase the number of revisions shown in an existing
1019 @file{*vc-change-log*} buffer by clicking on the @samp{Show 2X
1020 entries} or @samp{Show unlimited entries} buttons at the end of the
1021 buffer. However, RCS, SCCS, and CVS do not support this feature.
1022
1023 @node VC Undo
1024 @subsection Undoing Version Control Actions
1025
1026 @table @kbd
1027 @item C-x v u
1028 Revert the work file(s) in the current VC fileset to the last revision
1029 (@code{vc-revert}).
1030 @end table
1031
1032 @kindex C-x v u
1033 @findex vc-revert
1034 @vindex vc-revert-show-diff
1035 If you want to discard all the changes you have made to the current
1036 VC fileset, type @kbd{C-x v u} (@code{vc-revert-buffer}). This shows
1037 you a diff between the work file(s) and the revision from which you
1038 started editing, and asks for confirmation for discarding the changes.
1039 If you agree, the fileset is reverted. If you don't want @kbd{C-x v
1040 u} to show a diff, set the variable @code{vc-revert-show-diff} to
1041 @code{nil} (you can still view the diff directly with @kbd{C-x v =};
1042 @pxref{Old Revisions}). Note that @kbd{C-x v u} cannot be reversed
1043 with the usual undo commands (@pxref{Undo}), so use it with care.
1044
1045 On locking-based version control systems, @kbd{C-x v u} leaves files
1046 unlocked; you must lock again to resume editing. You can also use
1047 @kbd{C-x v u} to unlock a file if you lock it and then decide not to
1048 change it.
1049
1050 @node VC Ignore
1051 @subsection Ignore Version Control Files
1052
1053 @table @kbd
1054 @item C-x v G
1055 Ignore a file under current version control system. (@code{vc-ignore}).
1056 @end table
1057
1058 @kindex C-x v G
1059 @findex vc-ignore
1060 Many source trees contain some files that do not need to be
1061 versioned, such as editor backups, object or bytecode files, and built
1062 programs. You can simply not add them, but then they'll always crop
1063 up as unknown files. You can also tell the version control system to
1064 ignore these files by adding them to the ignore file at the top of the
1065 tree. @kbd{C-x v G} (@code{vc-ignore}) can help you do this. When
1066 called with a prefix argument, you can remove a file from the ignored
1067 file list.
1068
1069 @node VC Directory Mode
1070 @subsection VC Directory Mode
1071
1072 @cindex VC Directory buffer
1073 The @dfn{VC Directory buffer} is a specialized buffer for viewing
1074 the version control statuses of the files in a directory tree, and
1075 performing version control operations on those files. In particular,
1076 it is used to specify multi-file VC filesets for commands like
1077 @w{@kbd{C-x v v}} to act on (@pxref{VC Directory Commands}).
1078
1079 @kindex C-x v d
1080 @findex vc-dir
1081 To use the VC Directory buffer, type @kbd{C-x v d} (@code{vc-dir}).
1082 This reads a directory name using the minibuffer, and switches to a VC
1083 Directory buffer for that directory. By default, the buffer is named
1084 @file{*vc-dir*}. Its contents are described
1085 @iftex
1086 below.
1087 @end iftex
1088 @ifnottex
1089 in @ref{VC Directory Buffer}.
1090 @end ifnottex
1091
1092 The @code{vc-dir} command automatically detects the version control
1093 system to be used in the specified directory. In the event that more
1094 than one system is being used in the directory, you should invoke the
1095 command with a prefix argument, @kbd{C-u C-x v d}; this prompts for
1096 the version control system which the VC Directory buffer should use.
1097
1098 @ifnottex
1099 @cindex PCL-CVS
1100 @pindex cvs
1101 @cindex CVS directory mode
1102 In addition to the VC Directory buffer, Emacs has a similar facility
1103 called PCL-CVS which is specialized for CVS@. @xref{Top, , About
1104 PCL-CVS, pcl-cvs, PCL-CVS---The Emacs Front-End to CVS}.
1105 @end ifnottex
1106
1107 @menu
1108 * Buffer: VC Directory Buffer. What the buffer looks like and means.
1109 * Commands: VC Directory Commands. Commands to use in a VC directory buffer.
1110 @end menu
1111
1112 @node VC Directory Buffer
1113 @subsubsection The VC Directory Buffer
1114
1115 The VC Directory buffer contains a list of version-controlled files
1116 and their version control statuses. It lists files in the current
1117 directory (the one specified when you called @kbd{C-x v d}) and its
1118 subdirectories, but only those with a noteworthy status. Files
1119 that are up-to-date (i.e., the same as in the repository) are
1120 omitted. If all the files in a subdirectory are up-to-date, the
1121 subdirectory is not listed either. As an exception, if a file has
1122 become up-to-date as a direct result of a VC command, it is listed.
1123
1124 Here is an example of a VC Directory buffer listing:
1125
1126 @smallexample
1127 @group
1128 ./
1129 edited configure.ac
1130 * added README
1131 unregistered temp.txt
1132 src/
1133 * edited src/main.c
1134 @end group
1135 @end smallexample
1136
1137 @noindent
1138 Two work files have been modified but not committed:
1139 @file{configure.ac} in the current directory, and @file{foo.c} in the
1140 @file{src/} subdirectory. The file named @file{README} has been added
1141 but is not yet committed, while @file{temp.txt} is not under version
1142 control (@pxref{Registering}).
1143
1144 The @samp{*} characters next to the entries for @file{README} and
1145 @file{src/main.c} indicate that the user has marked out these files as
1146 the current VC fileset
1147 @iftex
1148 (see below).
1149 @end iftex
1150 @ifnottex
1151 (@pxref{VC Directory Commands}).
1152 @end ifnottex
1153
1154 The above example is typical for a decentralized version control
1155 system like Bazaar, Git, or Mercurial. Other systems can show other
1156 statuses. For instance, CVS shows the @samp{needs-update} status if
1157 the repository has changes that have not been applied to the work
1158 file. RCS and SCCS show the name of the user locking a file as its
1159 status.
1160
1161 @ifnottex
1162 @vindex vc-stay-local
1163 @vindex vc-cvs-stay-local
1164 On CVS and Subversion, the @code{vc-dir} command normally contacts
1165 the repository, which may be on a remote machine, to check for
1166 updates. If you change the variable @code{vc-stay-local} or
1167 @code{vc-cvs-stay-local} (for CVS) to @code{nil} (@pxref{CVS
1168 Options}), then Emacs avoids contacting a remote repository when
1169 generating the VC Directory buffer (it will still contact it when
1170 necessary, e.g., when doing a commit). This may be desirable if you
1171 are working offline or the network is slow.
1172 @end ifnottex
1173
1174 @vindex vc-directory-exclusion-list
1175 The VC Directory buffer omits subdirectories listed in the variable
1176 @code{vc-directory-exclusion-list}. Its default value contains
1177 directories that are used internally by version control systems.
1178
1179 @node VC Directory Commands
1180 @subsubsection VC Directory Commands
1181
1182 Emacs provides several commands for navigating the VC Directory
1183 buffer, and for marking files as belonging to the current VC
1184 fileset.
1185
1186 @table @kbd
1187 @item n
1188 @itemx @key{SPC}
1189 Move point to the next entry (@code{vc-dir-next-line}).
1190
1191 @item p
1192 Move point to the previous entry (@code{vc-dir-previous-line}).
1193
1194 @item @key{TAB}
1195 Move to the next directory entry (@code{vc-dir-next-directory}).
1196
1197 @item S-@key{TAB}
1198 Move to the previous directory entry
1199 (@code{vc-dir-previous-directory}).
1200
1201 @item @key{RET}
1202 @itemx f
1203 Visit the file or directory listed on the current line
1204 (@code{vc-dir-find-file}).
1205
1206 @item o
1207 Visit the file or directory on the current line, in a separate window
1208 (@code{vc-dir-find-file-other-window}).
1209
1210 @item m
1211 Mark the file or directory on the current line (@code{vc-dir-mark}),
1212 putting it in the current VC fileset. If the region is active, mark
1213 all files in the region.
1214
1215 A file cannot be marked with this command if it is already in a marked
1216 directory, or one of its subdirectories. Similarly, a directory
1217 cannot be marked with this command if any file in its tree is marked.
1218
1219 @item M
1220 If point is on a file entry, mark all files with the same status; if
1221 point is on a directory entry, mark all files in that directory tree
1222 (@code{vc-dir-mark-all-files}). With a prefix argument, mark all
1223 listed files and directories.
1224
1225 @item q
1226 Quit the VC Directory buffer, and bury it (@code{quit-window}).
1227
1228 @item u
1229 Unmark the file or directory on the current line. If the region is
1230 active, unmark all the files in the region (@code{vc-dir-unmark}).
1231
1232 @item U
1233 If point is on a file entry, unmark all files with the same status; if
1234 point is on a directory entry, unmark all files in that directory tree
1235 (@code{vc-dir-unmark-all-files}). With a prefix argument, unmark all
1236 files and directories.
1237
1238 @item x
1239 Hide files with @samp{up-to-date} status
1240 (@code{vc-dir-hide-up-to-date}). With a prefix argument, hide items
1241 whose state is that of the item at point.
1242 @end table
1243
1244 @findex vc-dir-mark
1245 @findex vc-dir-mark-all-files
1246 While in the VC Directory buffer, all the files that you mark with
1247 @kbd{m} (@code{vc-dir-mark}) or @kbd{M} (@code{vc-dir-mark}) are in
1248 the current VC fileset. If you mark a directory entry with @kbd{m},
1249 all the listed files in that directory tree are in the current VC
1250 fileset. The files and directories that belong to the current VC
1251 fileset are indicated with a @samp{*} character in the VC Directory
1252 buffer, next to their VC status. In this way, you can set up a
1253 multi-file VC fileset to be acted on by VC commands like @w{@kbd{C-x v
1254 v}} (@pxref{Basic VC Editing}), @w{@kbd{C-x v =}} (@pxref{Old
1255 Revisions}), and @w{@kbd{C-x v u}} (@pxref{VC Undo}).
1256
1257 The VC Directory buffer also defines some single-key shortcuts for
1258 VC commands with the @kbd{C-x v} prefix: @kbd{=}, @kbd{+}, @kbd{l},
1259 @kbd{i}, @kbd{D}, @kbd{L}, @kbd{G}, @kbd{I} and @kbd{v}.
1260
1261 For example, you can commit a set of edited files by opening a VC
1262 Directory buffer, where the files are listed with the @samp{edited}
1263 status; marking the files; and typing @kbd{v} or @kbd{C-x v v}
1264 (@code{vc-next-action}). If the version control system is
1265 changeset-based, Emacs will commit the files in a single revision.
1266
1267 While in the VC Directory buffer, you can also perform search and
1268 replace on the current VC fileset, with the following commands:
1269
1270 @table @kbd
1271 @item S
1272 Search the fileset (@code{vc-dir-search}).
1273
1274 @item Q
1275 Do a regular expression query replace on the fileset
1276 (@code{vc-dir-query-replace-regexp}).
1277
1278 @item M-s a C-s
1279 Do an incremental search on the fileset (@code{vc-dir-isearch}).
1280
1281 @item M-s a C-M-s
1282 Do an incremental regular expression search on the fileset
1283 (@code{vc-dir-isearch-regexp}).
1284 @end table
1285
1286 @noindent
1287 Apart from acting on multiple files, these commands behave much like
1288 their single-buffer counterparts (@pxref{Search}).
1289
1290 @cindex stashes in version control
1291 @cindex shelves in version control
1292 The above commands are also available via the menu bar, and via a
1293 context menu invoked by @kbd{Mouse-2}. Furthermore, some VC backends
1294 use the menu to provide extra backend-specific commands. For example,
1295 Git and Bazaar allow you to manipulate @dfn{stashes} and @dfn{shelves}
1296 (where are a way to temporarily put aside uncommitted changes, and
1297 bring them back at a later time).
1298
1299 @node Branches
1300 @subsection Version Control Branches
1301 @cindex branch (version control)
1302
1303 One use of version control is to support multiple independent lines
1304 of development, which are called @dfn{branches}. Amongst other
1305 things, branches can be used for maintaining separate stable and
1306 development versions of a program, and for developing unrelated
1307 features in isolation from one another.
1308
1309 VC's support for branch operations is currently fairly limited. For
1310 decentralized version control systems, it provides commands for
1311 @dfn{updating} one branch with the contents of another, and for
1312 @dfn{merging} the changes made to two different branches
1313 (@pxref{Merging}). For centralized version control systems, it
1314 supports checking out different branches and committing into new or
1315 different branches.
1316
1317 @menu
1318 * Switching Branches:: How to get to another existing branch.
1319 * Pulling / Pushing:: Receiving/sending changes from/to elsewhere.
1320 * Merging:: Transferring changes between branches.
1321 * Creating Branches:: How to start a new branch.
1322 @end menu
1323
1324 @node Switching Branches
1325 @subsubsection Switching between Branches
1326
1327 The various version control systems differ in how branches are
1328 implemented, and these differences cannot be entirely concealed by VC.
1329
1330 On some decentralized version control systems, including Bazaar and
1331 Mercurial in its normal mode of operation, each branch has its own
1332 working directory tree, so switching between branches just involves
1333 switching directories. On Git, branches are normally @dfn{co-located}
1334 in the same directory, and switching between branches is done using
1335 the @command{git checkout} command, which changes the contents of the
1336 working tree to match the branch you switch to. Bazaar also supports
1337 co-located branches, in which case the @command{bzr switch} command
1338 will switch branches in the current directory. With Subversion, you
1339 switch to another branch using the @command{svn switch} command.
1340
1341 The VC command to switch to another branch in the current directory
1342 is @kbd{C-x v r @var{branch-name} @key{RET}} (@code{vc-retrieve-tag}).
1343
1344 On centralized version control systems, you can also switch between
1345 branches by typing @kbd{C-u C-x v v} in an up-to-date work file
1346 (@pxref{Advanced C-x v v}), and entering the revision ID for a
1347 revision on another branch. On CVS, for instance, revisions on the
1348 @dfn{trunk} (the main line of development) normally have IDs of the
1349 form 1.1, 1.2, 1.3, @dots{}, while the first branch created from (say)
1350 revision 1.2 has revision IDs 1.2.1.1, 1.2.1.2, @dots{}, the second
1351 branch created from revision 1.2 has revision IDs 1.2.2.1, 1.2.2.2,
1352 @dots{}, and so forth. You can also specify the @dfn{branch ID},
1353 which is a branch revision ID omitting its final component
1354 (e.g., 1.2.1), to switch to the latest revision on that branch.
1355
1356 On a locking-based system, switching to a different branch also
1357 unlocks (write-protects) the working tree.
1358
1359 Once you have switched to a branch, VC commands will apply to that
1360 branch until you switch away; for instance, any VC filesets that you
1361 commit will be committed to that specific branch.
1362
1363 @node Pulling / Pushing
1364 @subsubsection Pulling/Pushing Changes into/from a Branch
1365
1366 @table @kbd
1367 @item C-x v +
1368 On a decentralized version control system, update the current branch
1369 by ``pulling in'' changes from another location.
1370
1371 On a centralized version control system, update the current VC
1372 fileset.
1373
1374 @item C-x v P
1375 On a decentralized version control system, ``push'' changes from the
1376 current branch to another location. This concept does not exist
1377 for centralized version control systems.
1378 @end table
1379
1380 @kindex C-x v +
1381 @findex vc-pull
1382 On a decentralized version control system, the command @kbd{C-x v +}
1383 (@code{vc-pull}) updates the current branch and working tree. It is
1384 typically used to update a copy of a remote branch. If you supply a
1385 prefix argument, the command prompts for the exact version control
1386 command to use, which lets you specify where to pull changes from.
1387 Otherwise, it pulls from a default location determined by the version
1388 control system.
1389
1390 Amongst decentralized version control systems, @kbd{C-x v +} is
1391 currently supported only by Bazaar, Git, and Mercurial. On Bazaar, it
1392 calls @command{bzr pull} for ordinary branches (to pull from a master
1393 branch into a mirroring branch), and @command{bzr update} for a bound
1394 branch (to pull from a central repository). On Git, it calls
1395 @command{git pull} to fetch changes from a remote repository and merge
1396 it into the current branch. On Mercurial, it calls @command{hg pull
1397 -u} to fetch changesets from the default remote repository and update
1398 the working directory.
1399
1400 Prior to pulling, you can use @kbd{C-x v I} (@code{vc-log-incoming})
1401 to view a log buffer of the changes to be applied. @xref{VC Change
1402 Log}.
1403
1404 On a centralized version control system like CVS, @kbd{C-x v +}
1405 updates the current VC fileset from the repository.
1406
1407 @kindex C-x v P
1408 @findex vc-push
1409 On a decentralized version control system, the command @kbd{C-x v P}
1410 (@code{vc-push}) sends changes from your current branch to another location.
1411 With a prefix argument, the command prompts for the exact
1412 version control command to use, which lets you specify where to push
1413 changes. Otherwise, it pushes to a default location determined
1414 by the version control system.
1415
1416 Prior to pushing, you can use @kbd{C-x v O} (@code{vc-log-outgoing})
1417 to view a log buffer of the changes to be sent. @xref{VC Change Log}.
1418
1419 This command is currently supported only by Bazaar, Git, and Mercurial.
1420 It signals an error for centralized version control systems.
1421
1422 @node Merging
1423 @subsubsection Merging Branches
1424 @cindex merging changes
1425
1426 @table @kbd
1427 @item C-x v m
1428 On a decentralized version control system, merge changes from another
1429 branch into the current one.
1430
1431 On a centralized version control system, merge changes from another
1432 branch into the current VC fileset.
1433 @end table
1434
1435 While developing a branch, you may sometimes need to @dfn{merge} in
1436 changes that have already been made in another branch. This is not a
1437 trivial operation, as overlapping changes may have been made to the
1438 two branches.
1439
1440 On a decentralized version control system, merging is done with the
1441 command @kbd{C-x v m} (@code{vc-merge}). On Bazaar, this prompts for
1442 the exact arguments to pass to @command{bzr merge}, offering a
1443 sensible default if possible. On Git, this prompts for the name of a
1444 branch to merge from, with completion (based on the branch names known
1445 to the current repository). The output from running the merge command
1446 is shown in a separate buffer.
1447
1448 On a centralized version control system like CVS, @kbd{C-x v m}
1449 prompts for a branch ID, or a pair of revision IDs (@pxref{Switching
1450 Branches}); then it finds the changes from that branch, or the changes
1451 between the two revisions you specified, and merges those changes into
1452 the current VC fileset. If you just type @key{RET}, Emacs simply
1453 merges any changes that were made on the same branch since you checked
1454 the file out.
1455
1456 @cindex conflicts
1457 @cindex resolving conflicts
1458 Immediately after performing a merge, only the working tree is
1459 modified, and you can review the changes produced by the merge with
1460 @kbd{C-x v D} and related commands (@pxref{Old Revisions}). If the
1461 two branches contained overlapping changes, merging produces a
1462 @dfn{conflict}; a warning appears in the output of the merge command,
1463 and @dfn{conflict markers} are inserted into each affected work file,
1464 surrounding the two sets of conflicting changes. You must then
1465 resolve the conflict by editing the conflicted files. Once you are
1466 done, the modified files must be committed in the usual way for the
1467 merge to take effect (@pxref{Basic VC Editing}).
1468
1469 @node Creating Branches
1470 @subsubsection Creating New Branches
1471
1472 On centralized version control systems like CVS, Emacs supports
1473 creating new branches as part of a commit operation. When committing
1474 a modified VC fileset, type @kbd{C-u C-x v v} (@code{vc-next-action}
1475 with a prefix argument; @pxref{Advanced C-x v v}). Then Emacs prompts
1476 for a revision ID for the new revision. You should specify a suitable
1477 branch ID for a branch starting at the current revision. For example,
1478 if the current revision is 2.5, the branch ID should be 2.5.1, 2.5.2,
1479 and so on, depending on the number of existing branches at that point.
1480
1481 To create a new branch at an older revision (one that is no longer
1482 the head of a branch), first select that revision (@pxref{Switching
1483 Branches}). Your procedure will then differ depending on whether you
1484 are using a locking or merging-based VCS.
1485
1486 On a locking VCS, you will need to lock the old revision branch with
1487 @kbd{C-x v v}. You'll be asked to confirm, when you lock the old
1488 revision, that you really mean to create a new branch---if you say no,
1489 you'll be offered a chance to lock the latest revision instead. On a
1490 merging-based VCS you will skip this step.
1491
1492 Then make your changes and type @kbd{C-x v v} again to commit a new
1493 revision. This creates a new branch starting from the selected
1494 revision.
1495
1496 After the branch is created, subsequent commits create new revisions
1497 on that branch. To leave the branch, you must explicitly select a
1498 different revision with @kbd{C-u C-x v v}.
1499
1500 @ifnottex
1501 @include vc1-xtra.texi
1502 @end ifnottex
1503
1504 @node Change Log
1505 @section Change Logs
1506
1507 @cindex change log
1508 Many software projects keep a @dfn{change log}. This is a file,
1509 normally named @file{ChangeLog}, containing a chronological record of
1510 when and how the program was changed. Sometimes, these files are
1511 automatically generated from the change log entries stored in version
1512 control systems, or are used to generate these change log entries.
1513 Sometimes, there are several change log files, each recording the
1514 changes in one directory or directory tree.
1515
1516 @menu
1517 * Change Log Commands:: Commands for editing change log files.
1518 * Format of ChangeLog:: What the change log file looks like.
1519 @end menu
1520
1521 @node Change Log Commands
1522 @subsection Change Log Commands
1523
1524 @kindex C-x 4 a
1525 @findex add-change-log-entry-other-window
1526 The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
1527 file for the file you are editing
1528 (@code{add-change-log-entry-other-window}). If that file is actually
1529 a backup file, it makes an entry appropriate for the file's
1530 parent---that is useful for making log entries for functions that
1531 have been deleted in the current version.
1532
1533 @kbd{C-x 4 a} visits the change log file and creates a new entry
1534 unless the most recent entry is for today's date and your name. It
1535 also creates a new item for the current file. For many languages, it
1536 can even guess the name of the function or other object that was
1537 changed.
1538
1539 @vindex add-log-keep-changes-together
1540 When the variable @code{add-log-keep-changes-together} is
1541 non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file
1542 rather than starting a new item.
1543
1544 You can combine multiple changes of the same nature. If you don't
1545 enter any text after the initial @kbd{C-x 4 a}, any subsequent
1546 @kbd{C-x 4 a} adds another symbol to the change log entry.
1547
1548 @vindex add-log-always-start-new-record
1549 If @code{add-log-always-start-new-record} is non-@code{nil},
1550 @kbd{C-x 4 a} always makes a new entry, even if the last entry
1551 was made by you and on the same date.
1552
1553 @vindex change-log-version-info-enabled
1554 @vindex change-log-version-number-regexp-list
1555 @cindex file version in change log entries
1556 If the value of the variable @code{change-log-version-info-enabled}
1557 is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
1558 change log entry. It finds the version number by searching the first
1559 ten percent of the file, using regular expressions from the variable
1560 @code{change-log-version-number-regexp-list}.
1561
1562 @cindex Change Log mode
1563 @findex change-log-mode
1564 The change log file is visited in Change Log mode. In this major
1565 mode, each bunch of grouped items counts as one paragraph, and each
1566 entry is considered a page. This facilitates editing the entries.
1567 @kbd{C-j} and auto-fill indent each new line like the previous line;
1568 this is convenient for entering the contents of an entry.
1569
1570 You can use the @code{next-error} command (by default bound to
1571 @kbd{C-x `}) to move between entries in the Change Log, when Change
1572 Log mode is on. You will jump to the actual site in the file that was
1573 changed, not just to the next Change Log entry. You can also use
1574 @code{previous-error} to move back in the same list.
1575
1576 @findex change-log-merge
1577 You can use the command @kbd{M-x change-log-merge} to merge other
1578 log files into a buffer in Change Log Mode, preserving the date
1579 ordering of entries.
1580
1581 Version control systems are another way to keep track of changes in
1582 your program and keep a change log. In the VC log buffer, typing
1583 @kbd{C-c C-a} (@code{log-edit-insert-changelog}) inserts the relevant
1584 Change Log entry, if one exists. @xref{Log Buffer}.
1585
1586 @node Format of ChangeLog
1587 @subsection Format of ChangeLog
1588
1589 A change log entry starts with a header line that contains the
1590 current date, your name (taken from the variable
1591 @code{add-log-full-name}), and your email address (taken from the
1592 variable @code{add-log-mailing-address}). Aside from these header
1593 lines, every line in the change log starts with a space or a tab. The
1594 bulk of the entry consists of @dfn{items}, each of which starts with a
1595 line starting with whitespace and a star. Here are two entries, both
1596 dated in May 1993, with two items and one item respectively.
1597
1598 @iftex
1599 @medbreak
1600 @end iftex
1601 @smallexample
1602 1993-05-25 Richard Stallman <rms@@gnu.org>
1603
1604 * man.el: Rename symbols 'man-*' to 'Man-*'.
1605 (manual-entry): Make prompt string clearer.
1606
1607 * simple.el (blink-matching-paren-distance):
1608 Change default to 12,000.
1609
1610 1993-05-24 Richard Stallman <rms@@gnu.org>
1611
1612 * vc.el (minor-mode-map-alist): Don't use it if it's void.
1613 (vc-cancel-version): Doc fix.
1614 @end smallexample
1615
1616 One entry can describe several changes; each change should have its
1617 own item, or its own line in an item. Normally there should be a
1618 blank line between items. When items are related (parts of the same
1619 change, in different places), group them by leaving no blank line
1620 between them.
1621
1622 You should put a copyright notice and permission notice at the
1623 end of the change log file. Here is an example:
1624
1625 @smallexample
1626 Copyright 1997, 1998 Free Software Foundation, Inc.
1627 Copying and distribution of this file, with or without modification, are
1628 permitted provided the copyright notice and this notice are preserved.
1629 @end smallexample
1630
1631 @noindent
1632 Of course, you should substitute the proper years and copyright holder.
1633
1634 @node Tags
1635 @section Tags Tables
1636 @cindex tags and tag tables
1637
1638 A @dfn{tag} is a reference to a subunit in a program or in a
1639 document. In source code, tags reference syntactic elements of the
1640 program: functions, subroutines, data types, macros, etc. In a
1641 document, tags reference chapters, sections, appendices, etc. Each
1642 tag specifies the name of the file where the corresponding subunit is
1643 defined, and the position of the subunit's definition in that file.
1644
1645 A @dfn{tags table} records the tags extracted by scanning the source
1646 code of a certain program or a certain document. Tags extracted from
1647 generated files reference the original files, rather than the
1648 generated files that were scanned during tag extraction. Examples of
1649 generated files include C files generated from Cweb source files, from
1650 a Yacc parser, or from Lex scanner definitions; @file{.i} preprocessed
1651 C files; and Fortran files produced by preprocessing @file{.fpp}
1652 source files.
1653
1654 @cindex etags
1655 To produce a tags table, you run the @command{etags} shell command
1656 on a document or the source code file. The @samp{etags} program
1657 writes the tags to a @dfn{tags table file}, or @dfn{tags file} in
1658 short. The conventional name for a tags file is @file{TAGS}@.
1659 @xref{Create Tags Table}.
1660
1661 Emacs provides many commands for searching and replacing using the
1662 information recorded in tags tables. For instance, the @kbd{M-.}
1663 (@code{find-tag}) jumps to the location of a specified function
1664 definition in its source file. @xref{Find Tag}.
1665
1666 @cindex C++ class browser, tags
1667 @cindex tags, C++
1668 @cindex class browser, C++
1669 @cindex Ebrowse
1670 The Ebrowse facility is similar to @command{etags} but specifically
1671 tailored for C++. @xref{Top,, Ebrowse, ebrowse, Ebrowse User's
1672 Manual}. The Semantic package provides another way to generate and
1673 use tags, separate from the @command{etags} facility.
1674 @xref{Semantic}.
1675
1676 @menu
1677 * Tag Syntax:: Tag syntax for various types of code and text files.
1678 * Create Tags Table:: Creating a tags table with @command{etags}.
1679 * Etags Regexps:: Create arbitrary tags using regular expressions.
1680 * Select Tags Table:: How to visit a tags table.
1681 * Find Tag:: Commands to find the definition of a specific tag.
1682 * Tags Search:: Using a tags table for searching and replacing.
1683 * List Tags:: Using tags for completion, and listing them.
1684 @end menu
1685
1686 @node Tag Syntax
1687 @subsection Source File Tag Syntax
1688
1689 Here is how tag syntax is defined for the most popular languages:
1690
1691 @itemize @bullet
1692 @item
1693 In C code, any C function or typedef is a tag, and so are definitions of
1694 @code{struct}, @code{union} and @code{enum}.
1695 @code{#define} macro definitions, @code{#undef} and @code{enum}
1696 constants are also
1697 tags, unless you specify @samp{--no-defines} when making the tags table.
1698 Similarly, global variables are tags, unless you specify
1699 @samp{--no-globals}, and so are struct members, unless you specify
1700 @samp{--no-members}. Use of @samp{--no-globals}, @samp{--no-defines}
1701 and @samp{--no-members} can make the tags table file much smaller.
1702
1703 You can tag function declarations and external variables in addition
1704 to function definitions by giving the @samp{--declarations} option to
1705 @command{etags}.
1706
1707 @item
1708 In C++ code, in addition to all the tag constructs of C code, member
1709 functions are also recognized; member variables are also recognized,
1710 unless you use the @samp{--no-members} option. Tags for variables and
1711 functions in classes are named @samp{@var{class}::@var{variable}} and
1712 @samp{@var{class}::@var{function}}. @code{operator} definitions have
1713 tag names like @samp{operator+}.
1714
1715 @item
1716 In Java code, tags include all the constructs recognized in C++, plus
1717 the @code{interface}, @code{extends} and @code{implements} constructs.
1718 Tags for variables and functions in classes are named
1719 @samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
1720
1721 @item
1722 In @LaTeX{} documents, the arguments for @code{\chapter},
1723 @code{\section}, @code{\subsection}, @code{\subsubsection},
1724 @code{\eqno}, @code{\label}, @code{\ref}, @code{\cite},
1725 @code{\bibitem}, @code{\part}, @code{\appendix}, @code{\entry},
1726 @code{\index}, @code{\def}, @code{\newcommand}, @code{\renewcommand},
1727 @code{\newenvironment} and @code{\renewenvironment} are tags.
1728
1729 Other commands can make tags as well, if you specify them in the
1730 environment variable @env{TEXTAGS} before invoking @command{etags}. The
1731 value of this environment variable should be a colon-separated list of
1732 command names. For example,
1733
1734 @example
1735 TEXTAGS="mycommand:myothercommand"
1736 export TEXTAGS
1737 @end example
1738
1739 @noindent
1740 specifies (using Bourne shell syntax) that the commands
1741 @samp{\mycommand} and @samp{\myothercommand} also define tags.
1742
1743 @item
1744 In Lisp code, any function defined with @code{defun}, any variable
1745 defined with @code{defvar} or @code{defconst}, and in general the
1746 first argument of any expression that starts with @samp{(def} in
1747 column zero is a tag. As an exception, expressions of the form
1748 @code{(defvar @var{foo})} are treated as declarations, and are only
1749 tagged if the @samp{--declarations} option is given.
1750
1751 @item
1752 In Scheme code, tags include anything defined with @code{def} or with a
1753 construct whose name starts with @samp{def}. They also include variables
1754 set with @code{set!} at top level in the file.
1755 @end itemize
1756
1757 Several other languages are also supported:
1758
1759 @itemize @bullet
1760
1761 @item
1762 In Ada code, functions, procedures, packages, tasks and types are
1763 tags. Use the @samp{--packages-only} option to create tags for
1764 packages only.
1765
1766 In Ada, the same name can be used for different kinds of entity
1767 (e.g., for a procedure and for a function). Also, for things like
1768 packages, procedures and functions, there is the spec (i.e., the
1769 interface) and the body (i.e., the implementation). To make it
1770 easier to pick the definition you want, Ada tag name have suffixes
1771 indicating the type of entity:
1772
1773 @table @samp
1774 @item /b
1775 package body.
1776 @item /f
1777 function.
1778 @item /k
1779 task.
1780 @item /p
1781 procedure.
1782 @item /s
1783 package spec.
1784 @item /t
1785 type.
1786 @end table
1787
1788 Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
1789 directly to the body of the package @code{bidule}, while @kbd{M-x
1790 find-tag @key{RET} bidule @key{RET}} will just search for any tag
1791 @code{bidule}.
1792
1793 @item
1794 In assembler code, labels appearing at the start of a line,
1795 followed by a colon, are tags.
1796
1797 @item
1798 In Bison or Yacc input files, each rule defines as a tag the nonterminal
1799 it constructs. The portions of the file that contain C code are parsed
1800 as C code.
1801
1802 @item
1803 In Cobol code, tags are paragraph names; that is, any word starting in
1804 column 8 and followed by a period.
1805
1806 @item
1807 In Erlang code, the tags are the functions, records and macros defined
1808 in the file.
1809
1810 @item
1811 In Fortran code, functions, subroutines and block data are tags.
1812
1813 @item
1814 In HTML input files, the tags are the @code{title} and the @code{h1},
1815 @code{h2}, @code{h3} headers. Also, tags are @code{name=} in anchors
1816 and all occurrences of @code{id=}.
1817
1818 @item
1819 In Lua input files, all functions are tags.
1820
1821 @item
1822 In makefiles, targets are tags; additionally, variables are tags
1823 unless you specify @samp{--no-globals}.
1824
1825 @item
1826 In Objective C code, tags include Objective C definitions for classes,
1827 class categories, methods and protocols. Tags for variables and
1828 functions in classes are named @samp{@var{class}::@var{variable}} and
1829 @samp{@var{class}::@var{function}}.
1830
1831 @item
1832 In Pascal code, the tags are the functions and procedures defined in
1833 the file.
1834
1835 @item
1836 In Perl code, the tags are the packages, subroutines and variables
1837 defined by the @code{package}, @code{sub}, @code{use constant},
1838 @code{my}, and @code{local} keywords. Use @samp{--globals} if you
1839 want to tag global variables. Tags for subroutines are named
1840 @samp{@var{package}::@var{sub}}. The name for subroutines defined in
1841 the default package is @samp{main::@var{sub}}.
1842
1843 @item
1844 In PHP code, tags are functions, classes and defines. Vars are tags
1845 too, unless you use the @samp{--no-members} option.
1846
1847 @item
1848 In PostScript code, the tags are the functions.
1849
1850 @item
1851 In Prolog code, tags are predicates and rules at the beginning of
1852 line.
1853
1854 @item
1855 In Python code, @code{def} or @code{class} at the beginning of a line
1856 generate a tag.
1857 @end itemize
1858
1859 You can also generate tags based on regexp matching (@pxref{Etags
1860 Regexps}) to handle other formats and languages.
1861
1862 @node Create Tags Table
1863 @subsection Creating Tags Tables
1864 @cindex @command{etags} program
1865
1866 The @command{etags} program is used to create a tags table file. It knows
1867 the syntax of several languages, as described in
1868 @iftex
1869 the previous section.
1870 @end iftex
1871 @ifnottex
1872 @ref{Tag Syntax}.
1873 @end ifnottex
1874 Here is how to run @command{etags}:
1875
1876 @example
1877 etags @var{inputfiles}@dots{}
1878 @end example
1879
1880 @noindent
1881 The @command{etags} program reads the specified files, and writes a tags
1882 table named @file{TAGS} in the current working directory. You can
1883 optionally specify a different file name for the tags table by using the
1884 @samp{--output=@var{file}} option; specifying @file{-} as a file name
1885 prints the tags table to standard output.
1886
1887 If the specified files don't exist, @command{etags} looks for
1888 compressed versions of them and uncompresses them to read them. Under
1889 MS-DOS, @command{etags} also looks for file names like @file{mycode.cgz}
1890 if it is given @samp{mycode.c} on the command line and @file{mycode.c}
1891 does not exist.
1892
1893 If the tags table becomes outdated due to changes in the files
1894 described in it, you can update it by running the @command{etags}
1895 program again. If the tags table does not record a tag, or records it
1896 for the wrong file, then Emacs will not be able to find that
1897 definition until you update the tags table. But if the position
1898 recorded in the tags table becomes a little bit wrong (due to other
1899 editing), Emacs will still be able to find the right position, with a
1900 slight delay.
1901
1902 Thus, there is no need to update the tags table after each edit.
1903 You should update a tags table when you define new tags that you want
1904 to have listed, or when you move tag definitions from one file to
1905 another, or when changes become substantial.
1906
1907 You can make a tags table @dfn{include} another tags table, by
1908 passing the @samp{--include=@var{file}} option to @command{etags}. It
1909 then covers all the files covered by the included tags file, as well
1910 as its own.
1911
1912 If you specify the source files with relative file names when you run
1913 @command{etags}, the tags file will contain file names relative to the
1914 directory where the tags file was initially written. This way, you can
1915 move an entire directory tree containing both the tags file and the
1916 source files, and the tags file will still refer correctly to the source
1917 files. If the tags file is @file{-} or is in the @file{/dev} directory,
1918 however, the file names are
1919 made relative to the current working directory. This is useful, for
1920 example, when writing the tags to @file{/dev/stdout}.
1921
1922 When using a relative file name, it should not be a symbolic link
1923 pointing to a tags file in a different directory, because this would
1924 generally render the file names invalid.
1925
1926 If you specify absolute file names as arguments to @command{etags}, then
1927 the tags file will contain absolute file names. This way, the tags file
1928 will still refer to the same files even if you move it, as long as the
1929 source files remain in the same place. Absolute file names start with
1930 @samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
1931
1932 When you want to make a tags table from a great number of files,
1933 you may have problems listing them on the command line, because some
1934 systems have a limit on its length. You can circumvent this limit by
1935 telling @command{etags} to read the file names from its standard
1936 input, by typing a dash in place of the file names, like this:
1937
1938 @smallexample
1939 find . -name "*.[chCH]" -print | etags -
1940 @end smallexample
1941
1942 @command{etags} recognizes the language used in an input file based
1943 on its file name and contents. You can specify the language
1944 explicitly with the @samp{--language=@var{name}} option. You can
1945 intermix these options with file names; each one applies to the file
1946 names that follow it. Specify @samp{--language=auto} to tell
1947 @command{etags} to resume guessing the language from the file names
1948 and file contents. Specify @samp{--language=none} to turn off
1949 language-specific processing entirely; then @command{etags} recognizes
1950 tags by regexp matching alone (@pxref{Etags Regexps}).
1951
1952 The option @samp{--parse-stdin=@var{file}} is mostly useful when
1953 calling @command{etags} from programs. It can be used (only once) in
1954 place of a file name on the command line. @command{etags} will read from
1955 standard input and mark the produced tags as belonging to the file
1956 @var{file}.
1957
1958 @samp{etags --help} outputs the list of the languages @command{etags}
1959 knows, and the file name rules for guessing the language. It also prints
1960 a list of all the available @command{etags} options, together with a short
1961 explanation. If followed by one or more @samp{--language=@var{lang}}
1962 options, it outputs detailed information about how tags are generated for
1963 @var{lang}.
1964
1965 @node Etags Regexps
1966 @subsection Etags Regexps
1967
1968 The @samp{--regex} option to @command{etags} allows tags to be
1969 recognized by regular expression matching. You can intermix this
1970 option with file names; each one applies to the source files that
1971 follow it. If you specify multiple @samp{--regex} options, all of
1972 them are used in parallel. The syntax is:
1973
1974 @smallexample
1975 --regex=[@var{@{language@}}]/@var{tagregexp}/[@var{nameregexp}/]@var{modifiers}
1976 @end smallexample
1977
1978 @noindent
1979 The essential part of the option value is @var{tagregexp}, the regexp
1980 for matching tags. It is always used anchored, that is, it only
1981 matches at the beginning of a line. If you want to allow indented
1982 tags, use a regexp that matches initial whitespace; start it with
1983 @samp{[ \t]*}.
1984
1985 In these regular expressions, @samp{\} quotes the next character, and
1986 all the GCC character escape sequences are supported (@samp{\a} for
1987 bell, @samp{\b} for back space, @samp{\d} for delete, @samp{\e} for
1988 escape, @samp{\f} for formfeed, @samp{\n} for newline, @samp{\r} for
1989 carriage return, @samp{\t} for tab, and @samp{\v} for vertical tab).
1990
1991 Ideally, @var{tagregexp} should not match more characters than are
1992 needed to recognize what you want to tag. If the syntax requires you
1993 to write @var{tagregexp} so it matches more characters beyond the tag
1994 itself, you should add a @var{nameregexp}, to pick out just the tag.
1995 This will enable Emacs to find tags more accurately and to do
1996 completion on tag names more reliably. You can find some examples
1997 below.
1998
1999 The @var{modifiers} are a sequence of zero or more characters that
2000 modify the way @command{etags} does the matching. A regexp with no
2001 modifiers is applied sequentially to each line of the input file, in a
2002 case-sensitive way. The modifiers and their meanings are:
2003
2004 @table @samp
2005 @item i
2006 Ignore case when matching this regexp.
2007 @item m
2008 Match this regular expression against the whole file, so that
2009 multi-line matches are possible.
2010 @item s
2011 Match this regular expression against the whole file, and allow
2012 @samp{.} in @var{tagregexp} to match newlines.
2013 @end table
2014
2015 The @samp{-R} option cancels all the regexps defined by preceding
2016 @samp{--regex} options. It too applies to the file names following
2017 it. Here's an example:
2018
2019 @smallexample
2020 etags --regex=/@var{reg1}/i voo.doo --regex=/@var{reg2}/m \
2021 bar.ber -R --lang=lisp los.er
2022 @end smallexample
2023
2024 @noindent
2025 Here @command{etags} chooses the parsing language for @file{voo.doo} and
2026 @file{bar.ber} according to their contents. @command{etags} also uses
2027 @var{reg1} to recognize additional tags in @file{voo.doo}, and both
2028 @var{reg1} and @var{reg2} to recognize additional tags in
2029 @file{bar.ber}. @var{reg1} is checked against each line of
2030 @file{voo.doo} and @file{bar.ber}, in a case-insensitive way, while
2031 @var{reg2} is checked against the whole @file{bar.ber} file,
2032 permitting multi-line matches, in a case-sensitive way. @command{etags}
2033 uses only the Lisp tags rules, with no user-specified regexp matching,
2034 to recognize tags in @file{los.er}.
2035
2036 You can restrict a @samp{--regex} option to match only files of a
2037 given language by using the optional prefix @var{@{language@}}.
2038 (@samp{etags --help} prints the list of languages recognized by
2039 @command{etags}.) This is particularly useful when storing many
2040 predefined regular expressions for @command{etags} in a file. The
2041 following example tags the @code{DEFVAR} macros in the Emacs source
2042 files, for the C language only:
2043
2044 @smallexample
2045 --regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
2046 @end smallexample
2047
2048 @noindent
2049 When you have complex regular expressions, you can store the list of
2050 them in a file. The following option syntax instructs @command{etags} to
2051 read two files of regular expressions. The regular expressions
2052 contained in the second file are matched without regard to case.
2053
2054 @smallexample
2055 --regex=@@@var{case-sensitive-file} --ignore-case-regex=@@@var{ignore-case-file}
2056 @end smallexample
2057
2058 @noindent
2059 A regex file for @command{etags} contains one regular expression per
2060 line. Empty lines, and lines beginning with space or tab are ignored.
2061 When the first character in a line is @samp{@@}, @command{etags} assumes
2062 that the rest of the line is the name of another file of regular
2063 expressions; thus, one such file can include another file. All the
2064 other lines are taken to be regular expressions. If the first
2065 non-whitespace text on the line is @samp{--}, that line is a comment.
2066
2067 For example, we can create a file called @samp{emacs.tags} with the
2068 following contents:
2069
2070 @smallexample
2071 -- This is for GNU Emacs C source files
2072 @{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
2073 @end smallexample
2074
2075 @noindent
2076 and then use it like this:
2077
2078 @smallexample
2079 etags --regex=@@emacs.tags *.[ch] */*.[ch]
2080 @end smallexample
2081
2082 Here are some more examples. The regexps are quoted to protect them
2083 from shell interpretation.
2084
2085 @itemize @bullet
2086
2087 @item
2088 Tag Octave files:
2089
2090 @smallexample
2091 etags --language=none \
2092 --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
2093 --regex='/###key \(.*\)/\1/' \
2094 --regex='/[ \t]*global[ \t].*/' \
2095 *.m
2096 @end smallexample
2097
2098 @noindent
2099 Note that tags are not generated for scripts, so that you have to add
2100 a line by yourself of the form @samp{###key @var{scriptname}} if you
2101 want to jump to it.
2102
2103 @item
2104 Tag Tcl files:
2105
2106 @smallexample
2107 etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
2108 @end smallexample
2109
2110 @item
2111 Tag VHDL files:
2112
2113 @smallexample
2114 etags --language=none \
2115 --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
2116 --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
2117 \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
2118 @end smallexample
2119 @end itemize
2120
2121 @node Select Tags Table
2122 @subsection Selecting a Tags Table
2123
2124 @findex visit-tags-table
2125 Emacs has at any time one @dfn{selected} tags table. All the
2126 commands for working with tags tables use the selected one. To select
2127 a tags table, type @kbd{M-x visit-tags-table}, which reads the tags
2128 table file name as an argument, with @file{TAGS} in the default
2129 directory as the default.
2130
2131 @vindex tags-file-name
2132 Emacs does not actually read in the tags table contents until you
2133 try to use them; all @code{visit-tags-table} does is store the file
2134 name in the variable @code{tags-file-name}, and setting the variable
2135 yourself is just as good. The variable's initial value is @code{nil};
2136 that value tells all the commands for working with tags tables that
2137 they must ask for a tags table file name to use.
2138
2139 Using @code{visit-tags-table} when a tags table is already loaded
2140 gives you a choice: you can add the new tags table to the current list
2141 of tags tables, or start a new list. The tags commands use all the tags
2142 tables in the current list. If you start a new list, the new tags table
2143 is used @emph{instead} of others. If you add the new table to the
2144 current list, it is used @emph{as well as} the others.
2145
2146 @vindex tags-table-list
2147 You can specify a precise list of tags tables by setting the variable
2148 @code{tags-table-list} to a list of strings, like this:
2149
2150 @c keep this on two lines for formatting in smallbook
2151 @example
2152 @group
2153 (setq tags-table-list
2154 '("~/emacs" "/usr/local/lib/emacs/src"))
2155 @end group
2156 @end example
2157
2158 @noindent
2159 This tells the tags commands to look at the @file{TAGS} files in your
2160 @file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
2161 directory. The order depends on which file you are in and which tags
2162 table mentions that file, as explained above.
2163
2164 Do not set both @code{tags-file-name} and @code{tags-table-list}.
2165
2166 @node Find Tag
2167 @subsection Finding a Tag
2168
2169 The most important thing that a tags table enables you to do is to find
2170 the definition of a specific tag.
2171
2172 @table @kbd
2173 @item M-.@: @var{tag} @key{RET}
2174 Find first definition of @var{tag} (@code{find-tag}).
2175 @item C-u M-.
2176 Find next alternate definition of last tag specified.
2177 @item C-u - M-.
2178 Go back to previous tag found.
2179 @item C-M-. @var{pattern} @key{RET}
2180 Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
2181 @item C-u C-M-.
2182 Find the next tag whose name matches the last pattern used.
2183 @item C-x 4 .@: @var{tag} @key{RET}
2184 Find first definition of @var{tag}, but display it in another window
2185 (@code{find-tag-other-window}).
2186 @item C-x 5 .@: @var{tag} @key{RET}
2187 Find first definition of @var{tag}, and create a new frame to select the
2188 buffer (@code{find-tag-other-frame}).
2189 @item M-*
2190 Pop back to where you previously invoked @kbd{M-.} and friends.
2191 @end table
2192
2193 @kindex M-.
2194 @findex find-tag
2195 @kbd{M-.}@: (@code{find-tag}) prompts for a tag name and jumps to
2196 its source definition. It works by searching through the tags table
2197 for that tag's file and approximate character position, visiting that
2198 file, and searching for the tag definition at ever-increasing
2199 distances away from the recorded approximate position.
2200
2201 When entering the tag argument to @kbd{M-.}, the usual minibuffer
2202 completion commands can be used (@pxref{Completion}), with the tag
2203 names in the selected tags table as completion candidates. If you
2204 specify an empty argument, the balanced expression in the buffer
2205 before or around point is the default argument. @xref{Expressions}.
2206
2207 You don't need to give @kbd{M-.} the full name of the tag; a part
2208 will do. @kbd{M-.} finds tags which contain that argument as a
2209 substring. However, it prefers an exact match to a substring match.
2210 To find other tags that match the same substring, give @code{find-tag}
2211 a numeric argument, as in @kbd{C-u M-.} or @kbd{M-0 M-.}; this does
2212 not read a tag name, but continues searching the tags table's text for
2213 another tag containing the same substring last used.
2214
2215 @kindex C-x 4 .
2216 @findex find-tag-other-window
2217 @kindex C-x 5 .
2218 @findex find-tag-other-frame
2219 Like most commands that can switch buffers, @code{find-tag} has a
2220 variant that displays the new buffer in another window, and one that
2221 makes a new frame for it. The former is @w{@kbd{C-x 4 .}}
2222 (@code{find-tag-other-window}), and the latter is @w{@kbd{C-x 5 .}}
2223 (@code{find-tag-other-frame}).
2224
2225 To move back to previous tag definitions, use @kbd{C-u - M-.}; more
2226 generally, @kbd{M-.} with a negative numeric argument. Similarly,
2227 @w{@kbd{C-x 4 .}} with a negative argument finds the previous tag
2228 location in another window.
2229
2230 @kindex M-*
2231 @findex pop-tag-mark
2232 @vindex find-tag-marker-ring-length
2233 As well as going back to places you've found tags recently, you can
2234 go back to places @emph{from where} you found them, using @kbd{M-*}
2235 (@code{pop-tag-mark}). Thus you can find and examine the definition
2236 of something with @kbd{M-.} and then return to where you were with
2237 @kbd{M-*}.
2238
2239 Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
2240 a depth determined by the variable @code{find-tag-marker-ring-length}.
2241
2242 @findex find-tag-regexp
2243 @kindex C-M-.
2244 The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
2245 match a specified regular expression. It is just like @kbd{M-.} except
2246 that it does regexp matching instead of substring matching.
2247
2248 @node Tags Search
2249 @subsection Searching and Replacing with Tags Tables
2250 @cindex search and replace in multiple files
2251 @cindex multiple-file search and replace
2252
2253 The commands in this section visit and search all the files listed
2254 in the selected tags table, one by one. For these commands, the tags
2255 table serves only to specify a sequence of files to search. These
2256 commands scan the list of tags tables starting with the first tags
2257 table (if any) that describes the current file, proceed from there to
2258 the end of the list, and then scan from the beginning of the list
2259 until they have covered all the tables in the list.
2260
2261 @table @kbd
2262 @item M-x tags-search @key{RET} @var{regexp} @key{RET}
2263 Search for @var{regexp} through the files in the selected tags
2264 table.
2265 @item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
2266 Perform a @code{query-replace-regexp} on each file in the selected tags table.
2267 @item M-,
2268 Restart one of the commands above, from the current location of point
2269 (@code{tags-loop-continue}).
2270 @end table
2271
2272 @findex tags-search
2273 @kbd{M-x tags-search} reads a regexp using the minibuffer, then
2274 searches for matches in all the files in the selected tags table, one
2275 file at a time. It displays the name of the file being searched so you
2276 can follow its progress. As soon as it finds an occurrence,
2277 @code{tags-search} returns.
2278
2279 @kindex M-,
2280 @findex tags-loop-continue
2281 Having found one match, you probably want to find all the rest.
2282 Type @kbd{M-,} (@code{tags-loop-continue}) to resume the
2283 @code{tags-search}, finding one more match. This searches the rest of
2284 the current buffer, followed by the remaining files of the tags table.
2285
2286 @findex tags-query-replace
2287 @kbd{M-x tags-query-replace} performs a single
2288 @code{query-replace-regexp} through all the files in the tags table. It
2289 reads a regexp to search for and a string to replace with, just like
2290 ordinary @kbd{M-x query-replace-regexp}. It searches much like @kbd{M-x
2291 tags-search}, but repeatedly, processing matches according to your
2292 input. @xref{Query Replace}, for more information on query replace.
2293
2294 @vindex tags-case-fold-search
2295 @cindex case-sensitivity and tags search
2296 You can control the case-sensitivity of tags search commands by
2297 customizing the value of the variable @code{tags-case-fold-search}. The
2298 default is to use the same setting as the value of
2299 @code{case-fold-search} (@pxref{Lax Search}).
2300
2301 It is possible to get through all the files in the tags table with a
2302 single invocation of @kbd{M-x tags-query-replace}. But often it is
2303 useful to exit temporarily, which you can do with any input event that
2304 has no special query replace meaning. You can resume the query
2305 replace subsequently by typing @kbd{M-,}; this command resumes the
2306 last tags search or replace command that you did. For instance, to
2307 skip the rest of the current file, you can type @kbd{M-> M-,}.
2308
2309 The commands in this section carry out much broader searches than the
2310 @code{find-tag} family. The @code{find-tag} commands search only for
2311 definitions of tags that match your substring or regexp. The commands
2312 @code{tags-search} and @code{tags-query-replace} find every occurrence
2313 of the regexp, as ordinary search commands and replace commands do in
2314 the current buffer.
2315
2316 These commands create buffers only temporarily for the files that they
2317 have to search (those which are not already visited in Emacs buffers).
2318 Buffers in which no match is found are quickly killed; the others
2319 continue to exist.
2320
2321 As an alternative to @code{tags-search}, you can run @command{grep}
2322 as a subprocess and have Emacs show you the matching lines one by one.
2323 @xref{Grep Searching}.
2324
2325 @node List Tags
2326 @subsection Tags Table Inquiries
2327
2328 @table @kbd
2329 @item C-M-i
2330 @itemx M-@key{TAB}
2331 Perform completion on the text around point, using the selected tags
2332 table if one is loaded (@code{completion-at-point}).
2333 @item M-x list-tags @key{RET} @var{file} @key{RET}
2334 Display a list of the tags defined in the program file @var{file}.
2335 @item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
2336 Display a list of all tags matching @var{regexp}.
2337 @end table
2338
2339 @cindex completion (symbol names)
2340 In most programming language modes, you can type @kbd{C-M-i} or
2341 @kbd{M-@key{TAB}} (@code{completion-at-point}) to complete the symbol
2342 at point. If there is a selected tags table, this command can use it
2343 to generate completion candidates. @xref{Symbol Completion}.
2344
2345 @findex list-tags
2346 @kbd{M-x list-tags} reads the name of one of the files covered by
2347 the selected tags table, and displays a list of tags defined in that
2348 file. Do not include a directory as part of the file name unless the
2349 file name recorded in the tags table includes a directory.
2350
2351 @findex tags-apropos
2352 @vindex tags-apropos-verbose
2353 @vindex tags-tag-face
2354 @vindex tags-apropos-additional-actions
2355 @kbd{M-x tags-apropos} is like @code{apropos} for tags
2356 (@pxref{Apropos}). It displays a list of tags in the selected tags
2357 table whose entries match @var{regexp}. If the variable
2358 @code{tags-apropos-verbose} is non-@code{nil}, it displays the names
2359 of the tags files together with the tag names. You can customize the
2360 appearance of the output by setting the variable @code{tags-tag-face}
2361 to a face. You can display additional output by customizing the
2362 variable @code{tags-apropos-additional-actions}; see its documentation
2363 for details.
2364
2365 @findex next-file
2366 @kbd{M-x next-file} visits files covered by the selected tags table.
2367 The first time it is called, it visits the first file covered by the
2368 table. Each subsequent call visits the next covered file, unless a
2369 prefix argument is supplied, in which case it returns to the first
2370 file.
2371
2372 @node EDE
2373 @section Emacs Development Environment
2374 @cindex EDE (Emacs Development Environment)
2375 @cindex Emacs Development Environment
2376 @cindex Integrated development environment
2377
2378 EDE (@dfn{Emacs Development Environment}) is a package that simplifies
2379 the task of creating, building, and debugging large programs with
2380 Emacs. It provides some of the features of an IDE, or @dfn{Integrated
2381 Development Environment}, in Emacs.
2382
2383 This section provides a brief description of EDE usage.
2384 @ifnottex
2385 For full details, see @ref{Top, EDE,, ede, Emacs Development Environment}.
2386 @end ifnottex
2387 @iftex
2388 For full details on Ede, type @kbd{C-h i} and then select the EDE
2389 manual.
2390 @end iftex
2391
2392 EDE is implemented as a global minor mode (@pxref{Minor Modes}). To
2393 enable it, type @kbd{M-x global-ede-mode} or click on the
2394 @samp{Project Support (EDE)} item in the @samp{Tools} menu. You can
2395 also enable EDE each time you start Emacs, by adding the following
2396 line to your initialization file:
2397
2398 @smallexample
2399 (global-ede-mode t)
2400 @end smallexample
2401
2402 @noindent
2403 Activating EDE adds a menu named @samp{Development} to the menu bar.
2404 Many EDE commands, including the ones described below, can be invoked
2405 from this menu.
2406
2407 EDE organizes files into @dfn{projects}, which correspond to
2408 directory trees. The @dfn{project root} is the topmost directory of a
2409 project. To define a new project, visit a file in the desired project
2410 root and type @kbd{M-x ede-new}. This command prompts for a
2411 @dfn{project type}, which refers to the underlying method that EDE
2412 will use to manage the project (@pxref{Creating a project, EDE,, ede,
2413 Emacs Development Environment}). The most common project types are
2414 @samp{Make}, which uses Makefiles, and @samp{Automake}, which uses GNU
2415 Automake (@pxref{Top, Automake,, automake, Automake}). In both cases,
2416 EDE also creates a file named @file{Project.ede}, which stores
2417 information about the project.
2418
2419 A project may contain one or more @dfn{targets}. A target can be an
2420 object file, executable program, or some other type of file, which is
2421 built from one or more of the files in the project.
2422
2423 To add a new @dfn{target} to a project, type @kbd{C-c . t}
2424 (@code{M-x ede-new-target}). This command also asks if you wish to
2425 add the current file to that target, which means that the target
2426 is to be built from that file. After you have defined a target, you
2427 can add more files to it by typing @kbd{C-c . a}
2428 (@code{ede-add-file}).
2429
2430 To build a target, type @kbd{C-c . c} (@code{ede-compile-target}).
2431 To build all the targets in the project, type @kbd{C-c . C}
2432 (@code{ede-compile-project}). EDE uses the file types to guess how
2433 the target should be built.
2434
2435 @ifnottex
2436 @include emerge-xtra.texi
2437 @end ifnottex