subversion and cvs
Differences between subversion and cvs.
- files
svn has only a single repository file but cvs is based on RCS file arch.
- branch and tags
In cvs, we use cvs tag and cvs branch to branch and tag source code
- import
In the base dir of the target dir
cvs import -m"import proj1" proj1 vendor_tag release_tag
But in svn, you can do it like this
svn import . file:///c:/svnroot/your_project -m "import proj1"
or
above the target project base dir
svn import proj1 file:///c:/svnroot/your_project -m "import proj1"
博客主要探讨了Subversion和CVS的相关内容,着重分析了两者之间的差异,为信息技术领域中版本控制工具的选择和使用提供参考。
165

被折叠的 条评论
为什么被折叠?



