Google Code checkout v8 方法

来源:互联网 发布:centos nginx yum 安装 编辑:程序博客网 时间:2024/04/28 23:24

按照Google Code提供的方法

Use this command to anonymously check out the up-to-date stable version of the project source code:

svn checkout http://v8.googlecode.com/svn/trunk/ v8

If you plan to contribute to V8 but are not a member, use this command to anonymously check out a read-only version of the development branch:

svn checkout http://v8.googlecode.com/svn/branches/bleeding_edge/ v8

If you're a member of the project, use this command to check out a writable development branch as yourself using HTTPS:

svn checkout https://v8.googlecode.com/svn/branches/bleeding_edge/ v8 --username <your username>
在命令行中用 svn checkout http://v8.googlecode.com/svn/trunk/ v8 检出v8代码,程序没有反应。

正确的方法:

svn checkout https://v8.googlecode.com/svn/trunk/ v8

即用https协议。

在TotoriseSVN中,输入:https://v8.googlecode.com/svn/trunk/

原创粉丝点击