aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorChong Yidong2011-12-20 11:00:10 +0800
committerChong Yidong2011-12-20 11:00:10 +0800
commit2edef1a0a6809d182d0003fe0413dfcb86ae47b6 (patch)
tree43f58c04fdb272b6669890b8b7f7c94192214d3a /etc
parent1154d12e5b3597869808d576dafaf0734840bc0f (diff)
downloademacs-2edef1a0a6809d182d0003fe0413dfcb86ae47b6.tar.gz
emacs-2edef1a0a6809d182d0003fe0413dfcb86ae47b6.zip
More updates for VC documentation.
* doc/emacs/maintaining.texi (VCS Concepts): Add "working tree" terminology. (Old Revisions): Use it. (VCS Repositories): Add "distributed" terminology. (Log Buffer): Remove duplicate description about changesets. Fix "current VC fileset" ambiguity. (Multi-User Branching): Node deleted. (Branches, Switching Branches): Discuss decentralized version control systems. (VC Pull): New node. (Merging): Document merging on decentralized systems. (Creating Branches): Note that this is specific to CVS and related systems.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS14
1 files changed, 8 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 65a3b41f5bf..95d47de5bba 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -833,19 +833,21 @@ controlling the degree of parallelism.
833 833
834** VC and related modes 834** VC and related modes
835 835
836+++
836*** Support for pulling on distributed version control systems. 837*** Support for pulling on distributed version control systems.
837The vc-pull command runs a "pull" operation, if it is supported. 838`C-x v +' (`vc-pull') runs a "pull" operation, if it is supported, to
838This updates the current branch from upstream. A prefix argument 839update the current branch and working tree. A prefix argument means
839means to prompt the user for specifics, e.g. a pull location. 840to prompt the user for specifics, e.g. a pull location.
840 841
841**** `vc-update' is now an alias for `vc-pull'. 842**** `vc-update' is now an alias for `vc-pull'.
842 843
843**** Currently supported by Bzr, Git, and Mercurial. 844**** Currently supported by Bzr, Git, and Mercurial.
844 845
846+++
845*** Support for merging on distributed version control systems. 847*** Support for merging on distributed version control systems.
846The vc-merge command now runs a "merge" operation, if it is supported. 848The vc-merge command now runs a "merge" operation, if it is supported,
847This merges another branch into the current one. This command prompts 849to merge changes from another branch into the current one. It prompts
848the user for specifics, e.g. a merge source. 850for specifics, e.g. a merge source.
849 851
850**** Currently supported for Bzr, Git, and Mercurial. 852**** Currently supported for Bzr, Git, and Mercurial.
851 853