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|
file.write(":connection_type:user@ip:repository")
end
elsif File.directory? absdir
changeCVS(absdir)
end
end
end
end

changeCVS("C:/workspace")

以上就是【ruby 小脚本搞定CVS服务器更换后checkout下来的工程迁移】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)
发表我的评论

最新评论

  1. 暂无评论