Dry run update with svn and cvs
Fri, 03/04/2011 - 17:04 — sandipTo test what files would get changed or conflict when running an update:
With svn:
svn merge --dry-run -r BASE:HEAD .
With cvs:
cvs -nq update -d
- sandip's blog
- Login or register to post comments
- Read more
Basic CVS command reference...
Fri, 05/06/2005 - 10:08 — sandipPrior to using cvs, set up the CVSROOT and EDITOR environment if not set up already.
$ export CVSROOT=/path/to/cvsroot $ export EDITOR=vi
There are only a handful of CVS commands that you need to know to get everything done to control a project. All the commands share a common general syntax of:
$ cvs [-d cvs_root_path] command [command-options-and-arguments]
-
init: Create/initialize a project.
$ cvs -d /path/to/cvs/PROJECT init