-
Notifications
You must be signed in to change notification settings - Fork 77
chromium版本
Google Chromium的Release版本有很多,如何查看已经发布的release版本是基于哪个revision的?
请查看:
- svn这里:http://src.chromium.org/svn/releases/
- git这里:http://src.chromium.org/viewvc/chrome/branches/?pathrev=247367
Chromium是使用git-svn管理的,主要是svn(历史的缘故),也同时支持git。每一个git的记录都会由git-svn转换成svn revision。
Chromium每个版本的revision有DEPS(在/src下),DEPS文件是指Chromium所依赖third_party库的版本。
不能直接在/src目录下通过'git checkout'命令切换版本,这样third_party的版本会不对应。需要通过gclient sync --revision <commit_hash> --jobs 8 --force
commit_hash就是要切换git commit hash值。如何根据svn的revision找到对应的git commit hash值?看这里:http://git.chromium.org/gitweb/?p=chromium%2Fsrc.git&a=search&h=HEAD&st=commit&s=%40123456
Update:上面的方法已经过时了,现在chromium的代码都用git管理了。
-
到
https://omahaproxy.appspot.com/
网站上的position lookup
输入对应release编号,如41.0.2272.76。 会得到对应的commit id
和postion id
。 -
到
http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html?prefix=Win/
上搜索对应步骤1的position id
则是对应该release下的编译后版本。
Reference
LLVM/Clang
C/C++
- Get lower 32 bits from uint64
- How to unpack a std::tuple to a function with multiple arguments?
- {}-list Initialization
- Empty macro arguments
- 为什么能在函数中以by value方式返回unique_ptr?
- c++unsigned类型提升
- extern "C"
Linux
- ubuntu获取源码方法
- gcc/g++常用命令
- 浏览器导入安全证书
- ubuntu下宏包latex安装
- Bash Shell常用快捷键
- ubuntu把/tmp目录挂载到内存
- tar命令
- voyager12.04 apt-get install无法安装解决方法
- terminal shows git branch
- 编译GTK API源程序(附带pkg-config用法)
- ldconfig检查库是否存在
- Googletest Setup&Install
- Centos设置service开机自动启动
- CentOS create admin user
- 设置时区
- MySQL修改root密码
- MySQL常用命令
- Screen使用
- 环境变量
- Unity桌面环境的desktop文件
- zip和gzip文件区别
- Linux安全设置
Vim
- vim列编辑
- vim编辑二进制文件
- vim quickfix窗口
- Vim 批量操作
- Vim对多行重复操作
- mac下vim编译安装
- mac下vim taglist无效解决方法
- Vim 配置vim-airline
Tools
- gdb cgdb命令
- Source Insight添加.cc文件
- Source Insight快捷键
- GPT分区转MBR分区
- IRC工具Pidgin使用
- iTerm2 shortcuts
- MacOS shortcuts
- Compile/Run JUnitTest in Command Line
- Install Python2.7 on CentOS 6.4
- Install vmware tool on ubuntu server 12.04
- node-gyp Usage
- zsh中文乱码解决方法
- tmux快捷键
- 使用aria2突破百度云盘限速
- 配置 scheme编写环境
- How to list all available targets in ninja
Others
- CRLF换行符
- Git autocrlf设置
- Git reflog数据恢复命令
- how to migrate from SVN repo to Git repo
- Git submodule使用
- Git Pull强制更新
Chromium-Dev tips