决定采用这样的方法开发
一台PC;一台上网本
PC上安装oracle、mssql、mysql和web服务、缓存服务;
上网本上安装web服务、缓存服务和mysql服务;
PC上安装svn server、写好代码后submit
纯引用
" It's a good practice to create one repository for the entire company or department and store all your projects in this repository. Creating separate repository for each project is not a good idea because in that case you will not be able to perform Subversion operations like copy, diff and merge cross-project.
It's not required but usually each projects has 3 subfolders: trunk, branches, tags. The trunk folder contains the main development branch, the branches folder contains subfolders with temporary copies of trunk for experimental development, release stabilization etc. and the tags folder contains copies of the officially released versions. "
trunk目录存放主要开发分支
branches目录存放临时拷贝
tags存放官方released版本
以上引自visual svn的网站。visual svn是windows下一个可视svn服务软件,很方便。
Follow Me