diff --git a/en_US.ISO8859-1/articles/committers-guide/article.xml b/en_US.ISO8859-1/articles/committers-guide/article.xml
index 1bbae473b3..e932af9570 100644
--- a/en_US.ISO8859-1/articles/committers-guide/article.xml
+++ b/en_US.ISO8859-1/articles/committers-guide/article.xml
@@ -478,7 +478,7 @@
other repositories, and keeping local branches for merging
back into the upstream repositories. There are extensions
that allow SVK to mirror
- CVS and Perforce repositories in addition
+ Perforce repositories in addition
to Subversion ones.
Like everything, SVK has its
@@ -711,16 +711,6 @@
daily use, except for the revision renumbering mentioned
earlier.
-
- SVN and SVK
- commands that have direct CVS equivalents
- usually have the same name and abbreviations. For example:
- checkout and co,
- update and up, and
- commit and
- ci.
-
-
Help
@@ -824,11 +814,7 @@
&prompt.user; svn status
- CVS has no direct equivalent of this
- command. The nearest would be cvs up -N
- which shows local changes and files that are out-of-date.
- Doing this in SVN is possible too,
- however:
+ To show local changes and files that are out-of-date do:
&prompt.user; svn status --show-updates
@@ -836,7 +822,7 @@
Editing and Committing
- Like CVS but unlike Perforce,
+ Unlike Perforce,
SVN and SVK do not
need to be told in advance about file editing.
@@ -882,7 +868,7 @@
- As with CVS, files are added to a
+ Files are added to a
SVN repository with svn
add. To add a file named
foo, edit it, then:
@@ -910,10 +896,9 @@
&prompt.user; svn mkdir bar
- In CVS, the directory is immediately
- created in the repository when you cvs
- add it; this is not the case in Subversion.
- Furthermore, unlike CVS, Subversion
+ The directory is not immediately
+ created in the repository when you use svn
+ mkdir. Subversion
allows directories to be removed using svn
rm, however there is no svn
rmdir:
@@ -938,9 +923,6 @@
&prompt.user; svn copy foo.c bar.c
&prompt.user; svn remove foo.c
-
- Neither of these operations have equivalents in
- CVS.
@@ -965,11 +947,11 @@
svn diff displays changes to the
working copy of the repository. Diffs generated by
- SVN are unified by default, unlike
- CVS, and include new files by default
+ SVN are unified
+ and include new files by default
in the diff output.
- As with CVS, svn
+ svn
diff can show the changes between two revisions
of the same file:
@@ -987,8 +969,8 @@
Reverting
Local changes (including additions and deletions) can be
- reverted using svn revert. Unlike
- cvs up -C, it does not update out-of-date
+ reverted using svn revert.
+ It does not update out-of-date
files—it just replaces them with pristine copies of
the original version.
@@ -1877,8 +1859,8 @@ U stable/9/share/man/man4/netmap.4
of svn status and svn
diff before committing.
- Mistakes will happen, but, unlike with
- CVS, they can generally be fixed without
+ Mistakes will happen but,
+ they can generally be fixed without
disruption.
Take a case of adding a file in the wrong location. The