CVS清空和设置批处理标本,Windows中为批处理脚本,Linux中为Shell脚本。 可用于快速清空目录中的CVS目录,或者设置CVS用户、IP和目录。 Clear all directory named CVS under given directory. Set the root of CVS, it use the type of pserver and can set cvs user, cvs server ip, cvs root directory under the giv
CVS报表工具 时间: 2004-11-11 Statcvs-xml这个工具是在公司的新闻组上看到的,它是一个开源组织的作品,主要是用来生成CVS修改的报表,包括图形显示功能,很不错。 1.访问http://statcvs-xml.berlios.de/,下载工具JAR包:statcvs-xml-0.9.4-full.jar; 2.步骤: It takes three steps to create reports for a CVS module: (1). Check out a copy
def changeCVS(path) Dir.foreach(path) do |dir| if dir != “.” && dir != “..” absdir = path + “/” + dir if (File.directory? absdir) && (dir == “CVS”) cvs_root_file_name = absdir + “/Root” p cvs_root_file_name File.open(cvs_root_file_name,”w”) do |file|