我是靠谱客的博主 机智短靴,这篇文章主要介绍使用gerrit query统计上传记录,现在分享给大家,希望可以做个参考。

gerrit query命令格式:

ssh -p <port> username@gerrit_server gerrit query 

查看所有参数类型

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ssh -p <port> username@gerrit_server gerrit query --help gerrit query QUERY ... [--] [--all-approvals] [--all-reviewers] [--comments] [--commit-message] [--current-patch-set] [--dependencies] [--files] [--format [TEXT | JSON]] [--help (-h)] [--patch-sets] [--start (-S) N] [--submit-records] [--trace] [--trace-id VAL] QUERY : Query to execute -- : end of options (default: false) --all-approvals : Include information about all patch sets and approvals --all-reviewers : Include all reviewers --comments : Include patch set and inline comments --commit-message : Include the full commit message for a change --current-patch-set : Include information about current patch set --dependencies : Include depends-on and needed-by information --files : Include file list on patch sets --format [TEXT | JSON] : Output display format --help (-h) : display this help text --patch-sets : Include information about all patch sets --start (-S) N : Number of changes to skip --submit-records : Include submit and label status --trace : enable request tracing (default: false) --trace-id VAL : trace ID (can only be set if --trace was set too)

除了以上默认参数之外,还有其他参数可以使用。

before:'date'

               查询指定日期之前的修改记录,ex. before:2020-07-31

after:'date'

               查询指定日期之前的修改记录,ex. after:2020-07-01

change:'ID'

     查询指定change-id的change信息

conflicts:'ID'

    查询指定conflicts-id的change信息

owner:'USER', o:'USER'

    查询指定owner的change信息

ownerin:'GROUP'

    查询指定group人员提交的change信息

reviewer:'USER', r:'USER'

    查询指定审核人员的change信息

reviewerin:'GROUP'

    查询指定group人员审核的change信息

commit:'SHA1'

    Changes where 'SHA1' is one of the patch sets of the change.

project:'PROJECT', p:'PROJECT'

    查询指定项目下的change信息

projects:'xx'

     查询项目名以xx开头的所有项目的chage信息

parentproject:'PROJECT'

     查询指定项目及其子项目的change信息

branch:'BRANCH'

    查询指定分支的change信息

topic:'TOPIC'

    查询指定topic的change信息,常与‘branch’,‘project’连用

ref:'xxx'

     查询目标分支与 xxx匹配的change信息

tr:'ID', bug:'ID'

    查询提交信息中包含‘bug’的change信息

message:'MESSAGE'

    查询提交信息包含‘MESSAGE’的change信息

comment:'TEXT'

    查询comment信息包含指定字符串的 change信息

status:xxx

    查询指定状态的change

最后

以上就是机智短靴最近收集整理的关于使用gerrit query统计上传记录的全部内容,更多相关使用gerrit内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部