6月14日上海 OSC 源创会开始报名,送机械键盘和开源无码内裤
Apache Subversion 1.9.0-rc2 发布,此版本现已提供 下载 :
subversion-1.9.0-rc2.tar.bz2
subversion-1.9.0-rc2.tar.gz
subversion-1.9.0-rc2.zip
更新内容
常规修改 * make all commands provide brief description in help output (r1522518) * flush stdout before exiting to avoid information being lost (r1543868) 重要特性 * fsfs: new format 7 with more efficient on-disk layout (r1547045 et al) * resolve: improve interactive conflict resolution menus * blame: support showing prospective as well as previous changes * info: support printing of individual values with --show-item (r1662620) * svn auth: new subcommand to manage cached credentials and certs * svnserve: cache config and authz to lower resource usage and be able to serve large numbers of connections with a limited number of threads * membuffer: quadruple the maximum cacheable directory size (r1545948 et al) * new filesystem fsx (faster, smaller); experimental - see release notes
更多内容请看 更新日志 和 发行说明 。
git.oschina.net 国内唯一支持 SVN 的 Git 代码托管平台
Subversion是一个版本控制系统,相对于的RCS、CVS,采用了分支管理系统,它的设计目标就是取代CVS。互联网上免费的版本控制服务多基于Subversion。
原子提交。一次提交不管是单个还是多个文件,都是作为一个整体提交的。在这当中发生的意外例如传输中断,不会引起数据库的不完整和数据损坏。
重命名、复制、删除文件等动作都保存在版本历史记录当中。
对于二进制文件,使用了节省空间的保存方法。(简单的理解,就是只保存和上一版本不同之处)
目录也有版本历史。整个目录树可以被移动或者复制,操作很简单,而且能够保留全部版本记录。
分支的开销非常小。
优化过的数据库访问,使得一些操作不必访问数据库就可以做到。这样减少了很多不必要的和数据库主机之间的网络流量。