vc_add

one of the documented procedures in this installation of the ACS
Usage:
vc_add   path
What it does:
Add a file or a directory to the repository.
Defined in: /web/philip/tcl/vc-defs.tcl

Source code:

 
    if [catch { vc_exec "add [vc_path_relative $path]" } errmsg] {
	ns_log Error "vc_add: $errmsg"
	return 1
    } else {
	return 0
    }


philg@mit.edu