vc_remove pathWhat it does:
Remove a file from the repository.Defined in: /web/philip/tcl/vc-defs.tcl
Source code:
if [file isdirectory $path] {
return
}
if [catch {
if [file exists $path] {
vc_exec "remove -f [vc_path_relative $path]"
} else {
vc_exec "remove [vc_path_relative $path]"
}
} errmsg] {
ns_log Error "vc_remove: $errmsg"
return 1
} else {
return 0
}