转载

Apache Subversion 1.9.0 rc1 发布,版本控制系统

5月23日 西安 OSC 源创会开始报名啦,存储、虚拟机、Docker 等干货分享

Apache Subversion 1.9.0 rc1 发布,此版本是 1.9.0 的预览版本,此版本主要更新如下:

一般更新:

  • * 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

次要性能更新:

  • * new 'diff-ignore-content-type' runtime configuration option

  • * new option for 'svnadmin verify': --check-normalization

  • * new option for 'svnadmin verify': --keep-going

  • * svnadmin info: new subcommand to print info about a repository

  • * print summary of conflicts before/after interactive conflict resolution

  • * import: reduce number of connections to the server needed (r1482962)

  • * membuffer: rework cache eviction heuristics (r1476664 et at)

  • * membuffer: improved cache usage statistics (r1489883)

  • * mergeinfo: new '--log' option (r1492168)

详细更新信息请查看 更新日志 。

此版本现已提供下载:

http://subversion.apache.org/download/#pre-releases

git.oschina.net 国内唯一支持 SVN 的 Git 代码托管平台

Apache Subversion 1.9.0 rc1 发布,版本控制系统

Subversion是一个版本控制系统,相对于的RCS、CVS,采用了分支管理系统,它的设计目标就是取代CVS。互联网上免费的版本控制服务多基于Subversion。

优于CVS之处

  • 原子提交。一次提交不管是单个还是多个文件,都是作为一个整体提交的。在这当中发生的意外例如传输中断,不会引起数据库的不完整和数据损坏。

  • 重命名、复制、删除文件等动作都保存在版本历史记录当中。

  • 对于二进制文件,使用了节省空间的保存方法。(简单的理解,就是只保存和上一版本不同之处)

  • 目录也有版本历史。整个目录树可以被移动或者复制,操作很简单,而且能够保留全部版本记录。

  • 分支的开销非常小。

  • 优化过的数据库访问,使得一些操作不必访问数据库就可以做到。这样减少了很多不必要的和数据库主机之间的网络流量。

使用情况

虽然在 2006年 时 Subversion 的使用族群仍然远少于传统的 CVS,但已经有许多开放原码团体决定将 CVS 转换为 Subversion。已经转换使用 Subversion 的包括了 FreeBSD、Apache Software Foundation、KDE、GNOME、GCC、Python、Samba、Mono 以及许多团体。有许多的团队换用 Subversion 是因为 Trac 所提供的专案管理环境。除此之外,一些自由软件开发的协作网如SourceForge除了提供 CVS 外,现在也提供专案开发者使用 Subversion 作为源码管理系统, JavaForge、Google Code以及 BountySource 则以 Subversion 作为官方的源码管理系统。

Subversion中文网:http://www.subversion.org.cn/

正文到此结束
Loading...