一、提交bug
首先,在https://bugs.launchpad.net/上注册账户。(登录页面有ubuntu字样)
输入你想要搜索的项目
可以看到最近的bug、blueprints。
填写相应的bug信息
注意这个bug id号,到此向openstack社区提交文档bug流程就是这样。
二、提交patch
在https://review.openstack.org上注册账号。
配置gerrit公钥认证
[root@centos7 openstack-manuals]# git clone https://review.openstack.org/openstack/openstack-manuals [root@centos7 openstack-manuals]# git checkout -b bug/1481586 # topic以bug/bug id命名 git branch -a [root@centos7 openstack-manuals]# git branch -a * bug/1481586 master remotes/gerrit/master remotes/gerrit/stable/juno remotes/gerrit/stable/kilo remotes/origin/HEAD -> origin/master remotes/origin/master remotes/origin/stable/juno remotes/origin/stable/kilo [root@centos7 openstack-manuals]# git status # 查看文件变化 [root@centos7 openstack-manuals]# git add . [root@centos7 openstack-manuals]# git commit # 填写commit信息,格式以下 [install-guide] replace service restart with service start Using service start command when you start nova services at the first time Closes-Bug: #1481586 [root@centos7 openstack-manuals]# git review # gerrit的端口29418被天朝的greate wall给墙了,需要翻墙 # 针对同一个change-id做修改 [root@centos7 openstack-manuals]# git add . [root@centos7 openstack-manuals]# git commit --amend [root@centos7 openstack-manuals]# git review
查看review信息
本文出自 “the-way-to-cloud” 博客,请务必保留此出处http://iceyao.blog.51cto.com/9426658/1682037
原文地址:http://iceyao.blog.51cto.com/9426658/1682037