Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = Gerrit Code Review - Project Configuration File Format |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 2 | |
| 3 | This page explains the storage format of Gerrit's project configuration |
| 4 | and access control models. |
| 5 | |
| 6 | The web UI access control panel is a front end for human-readable |
| 7 | configuration files under the +refs/meta/config+ namespace in the |
| 8 | affected project. Direct manipulation of these files is mainly |
| 9 | relevant in an automation scenario of the access controls. |
| 10 | |
| 11 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 12 | == The +refs/meta/config+ namespace |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 13 | |
| 14 | The namespace contains three different files that play different |
| 15 | roles in the permission model. With read permission to that reference, |
| 16 | it is possible to fetch the +refs/meta/config+ reference to a local |
| 17 | repository. A nice side effect is that you can also upload changes |
| 18 | to project permissions and review them just like with regular code |
| 19 | changes. The preview changes option is also provided on the UI. Please note |
| 20 | that you will have to configure push rights for the +refs/meta/config+ name |
| 21 | space if you'd like to use the possibility to automate permission updates. |
| 22 | |
| 23 | |
| 24 | [[file-project_config]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 25 | == The file +project.config+ |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 26 | |
| 27 | The +project.config+ file contains the link between groups and their |
| 28 | permitted actions on reference patterns in this project and any projects |
| 29 | that inherit its permissions. |
| 30 | |
| 31 | The format in this file corresponds to the Git config file format, so |
| 32 | if you want to automate your permissions it is a good idea to use the |
| 33 | +git config+ command when writing to the file. This way you know you |
| 34 | don't accidentally break the format of the file. |
| 35 | |
| 36 | Here follows a +git config+ command example: |
| 37 | |
| 38 | ---- |
| 39 | $ git config -f project.config project.description "Rights inherited by all other projects" |
| 40 | ---- |
| 41 | |
| 42 | Below you will find an example of the +project.config+ file format: |
| 43 | |
| 44 | ---- |
| 45 | [project] |
| 46 | description = Rights inherited by all other projects |
| 47 | [access "refs/*"] |
| 48 | read = group Administrators |
David Myllykangas | b3ccec6 | 2015-01-21 15:41:13 +0100 | [diff] [blame] | 49 | [access "refs/heads/*"] |
| 50 | label-Your-Label-Here = -1..+1 group Administrators |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 51 | [capability] |
| 52 | administrateServer = group Administrators |
| 53 | [receive] |
| 54 | requireContributorAgreement = false |
David Myllykangas | b3ccec6 | 2015-01-21 15:41:13 +0100 | [diff] [blame] | 55 | [label "Your-Label-Here"] |
| 56 | function = MaxWithBlock |
| 57 | value = -1 Your -1 Description |
| 58 | value = 0 Your No score Description |
| 59 | value = +1 Your +1 Description |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 60 | ---- |
| 61 | |
| 62 | As you can see, there are several sections. |
| 63 | |
| 64 | The link:#project-section[+project+ section] appears once per project. |
| 65 | |
| 66 | The link:#access-section[+access+ section] appears once per reference pattern, |
Jonathan Nieder | 5758f18 | 2015-03-30 11:28:55 -0700 | [diff] [blame^] | 67 | such as `+refs/*+` or `+refs/heads/*+`. Only one access section per pattern is |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 68 | allowed. You will find examples of keys and values in each category section |
| 69 | <<access_category,below>>. |
| 70 | |
| 71 | The link:#receive-section[+receive+ section] appears once per project. |
| 72 | |
| 73 | The link:#submit-section[+submit+ section] appears once per project. |
| 74 | |
| 75 | The link:#capability-section[+capability+] section only appears once, and only |
| 76 | in the +All-Projects+ repository. It controls core features that are configured |
| 77 | on a global level. You can find examples of these |
| 78 | <<capability_category,below>>. |
| 79 | |
David Myllykangas | b3ccec6 | 2015-01-21 15:41:13 +0100 | [diff] [blame] | 80 | The link:#label-section[+label+] section can appear multiple times. You can |
| 81 | also redefine the text and behavior of the built in label types `Code-Review` |
| 82 | and `Verified`. |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 83 | |
| 84 | [[project-section]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 85 | === Project section |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 86 | |
| 87 | The project section includes configuration of project settings. |
| 88 | |
| 89 | These are the keys: |
| 90 | |
| 91 | - Description |
| 92 | |
| 93 | |
| 94 | [[receive-section]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 95 | === Receive section |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 96 | |
| 97 | The receive section includes configuration of project-specific |
| 98 | receive settings: |
| 99 | |
| 100 | [[receive.requireContributorAgreement]]receive.requireContributorAgreement:: |
| 101 | + |
| 102 | Controls whether or not a user must complete a contributor agreement before |
| 103 | they can upload changes. Default is `INHERIT`. If `All-Project` enables this |
| 104 | option then the dependent project must set it to false if users are not |
| 105 | required to sign a contributor agreement prior to submitting changes for that |
| 106 | specific project. To use that feature the global option in `gerrit.config` |
| 107 | must be enabled: |
| 108 | link:config-gerrit.html#auth.contributorAgreements[auth.contributorAgreements]. |
| 109 | |
| 110 | [[receive.requireSignedOffBy]]receive.requireSignedOffBy:: |
| 111 | + |
| 112 | Sign-off can be a requirement for some projects (for example Linux kernel uses |
| 113 | it). Sign-off is a line at the end of the commit message which certifies who |
| 114 | is the author of the commit. Its main purpose is to improve tracking of who |
| 115 | did what, especially with patches. Default is `INHERIT`, which means that this |
| 116 | property is inherited from the parent project. |
| 117 | |
| 118 | [[receive.requireChangeId]]receive.requireChangeId:: |
| 119 | + |
| 120 | Controls whether or not the Change-Id must be included in the commit message |
| 121 | in the last paragraph. Default is `INHERIT`, which means that this property |
| 122 | is inherited from the parent project. |
| 123 | |
| 124 | [[receive.maxObjectSizeLimit]]receive.maxObjectSizeLimit:: |
| 125 | + |
| 126 | Maximum allowed Git object size that receive-pack will accept. If an object |
| 127 | is larger than the given size the pack-parsing will abort and the push |
| 128 | operation will fail. If set to zero then there is no limit. |
| 129 | + |
| 130 | Project owners can use this setting to prevent developers from pushing |
| 131 | objects which are too large to Gerrit. This setting can also be set it |
| 132 | `gerrit.config` globally link:config-gerrit.html#receive.maxObjectSizeLimit[ |
| 133 | receive.maxObjectSizeLimit]. |
| 134 | + |
| 135 | The project specific setting in `project.config` is only honored when it |
| 136 | further reduces the global limit. |
| 137 | + |
| 138 | Default is zero. |
| 139 | + |
| 140 | Common unit suffixes of k, m, or g are supported. |
| 141 | |
Rob Ward | 2cf1295 | 2014-01-26 20:38:12 +0000 | [diff] [blame] | 142 | [[receive.checkReceivedObjects]]receive.checkReceivedObjects:: |
| 143 | + |
| 144 | Controls whether or not the JGit functionality for checking received objects |
| 145 | is enabled. |
| 146 | + |
| 147 | By default Gerrit checks the validity of git objects. Setting this variable to |
| 148 | false should not be used unless a project with history containing invalid |
| 149 | objects needs to be pushed into a Gerrit repository. |
| 150 | + |
| 151 | This functionality is provided as some other git implementations have allowed |
| 152 | bad history to be written into git repositories. If these repositories need pushing |
| 153 | up to Gerrit then the JGit checks need to be disabled. |
| 154 | + |
| 155 | The default value for this is true, false disables the checks. |
| 156 | |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 157 | [[submit-section]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 158 | === Submit section |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 159 | |
| 160 | The submit section includes configuration of project-specific |
| 161 | submit settings: |
| 162 | |
| 163 | - 'mergeContent': Defines whether to automatically merge changes. Valid values |
| 164 | are 'true', 'false', or 'INHERIT'. Default is 'INHERIT'. |
| 165 | |
Stefan Lay | 08ba473 | 2014-05-05 16:36:12 +0200 | [diff] [blame] | 166 | - 'action': defines the link:project-configuration.html#submit_type[submit type]. Valid |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 167 | values are 'fast forward only', 'merge if necessary', 'rebase if necessary', |
| 168 | 'merge always' and 'cherry pick'. The default is 'merge if necessary'. |
| 169 | |
| 170 | Merge strategy |
| 171 | |
| 172 | |
| 173 | [[access-section]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 174 | === Access section |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 175 | |
| 176 | Each +access+ section includes a reference and access rights connected |
| 177 | to groups. Each group listed must exist in the link:#file-groups[+groups+ file]. |
| 178 | |
| 179 | Please refer to the |
| 180 | link:access-control.html#access_categories[Access Categories] |
| 181 | documentation for a full list of available access rights. |
| 182 | |
| 183 | |
Shawn Pearce | 9cfcebd | 2014-04-25 16:41:12 -0700 | [diff] [blame] | 184 | [[mimetype-section]] |
| 185 | === MIME Types section |
| 186 | |
| 187 | The +mimetype+ section may be configured to force the web code |
| 188 | reviewer to return certain MIME types by file path. MIME types |
| 189 | may be used to activate syntax highlighting. |
| 190 | |
| 191 | ---- |
| 192 | [mimetype "text/x-c"] |
| 193 | path = *.pkt |
| 194 | [mimetype "text/x-java"] |
| 195 | path = api/current.txt |
| 196 | ---- |
| 197 | |
| 198 | |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 199 | [[capability-section]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 200 | === Capability section |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 201 | |
| 202 | The +capability+ section only appears once, and only in the +All-Projects+ |
| 203 | repository. It controls Gerrit administration capabilities that are configured |
| 204 | on a global level. |
| 205 | |
| 206 | Please refer to the |
| 207 | link:access-control.html#global_capabilities[Global Capabilities] |
| 208 | documentation for a full list of available capabilities. |
| 209 | |
David Myllykangas | b3ccec6 | 2015-01-21 15:41:13 +0100 | [diff] [blame] | 210 | [[label-section]] |
| 211 | === Label section |
| 212 | |
| 213 | Please refer to link:config-labels.html#label_custom[Custom Labels] documentation. |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 214 | |
Saša Živkov | 944b838 | 2014-05-08 14:02:15 +0200 | [diff] [blame] | 215 | [[branchOrder-section]] |
| 216 | === branchOrder section |
| 217 | |
| 218 | Defines a branch ordering which is used for backporting of changes. |
| 219 | Backporting will be offered for a change (in the Gerrit UI) for all |
| 220 | more stable branches where the change can merge cleanly. |
| 221 | |
| 222 | [[branchOrder.branch]]branchOrder.branch:: |
| 223 | + |
| 224 | A branch name, typically multiple values will be defined. The order of branch |
| 225 | names in this section defines the branch order. The topmost is considered to be |
| 226 | the least stable branch (typically the master branch) and the last one the |
| 227 | most stable (typically the last maintained release branch). |
| 228 | |
| 229 | Example: |
| 230 | |
| 231 | ---- |
| 232 | [branchOrder] |
| 233 | branch = master |
| 234 | branch = stable-2.9 |
| 235 | branch = stable-2.8 |
| 236 | branch = stable-2.7 |
| 237 | ---- |
| 238 | |
| 239 | The `branchOrder` section is inheritable. This is useful when multiple or all |
| 240 | projects follow the same branch rules. A `branchOrder` section in a child |
| 241 | project completely overrides any `branchOrder` section from a parent i.e. there |
| 242 | is no merging of `branchOrder` sections. A present but empty `branchOrder` |
| 243 | section removes all inherited branch order. |
| 244 | |
| 245 | Branches not listed in this section will not be included in the mergeability |
| 246 | check. If the `branchOrder` section is not defined then the mergeability of a |
| 247 | change into other branches will not be done. |
| 248 | |
| 249 | |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 250 | [[file-groups]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 251 | == The file +groups+ |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 252 | |
| 253 | Each group in this list is linked with its UUID so that renaming of |
| 254 | groups is possible without having to rewrite every +groups+ file |
| 255 | in every repository where it's used. |
| 256 | |
| 257 | This is what the default groups file for +All-Projects.git+ looks like: |
| 258 | |
| 259 | ---- |
| 260 | # UUID Group Name |
| 261 | # |
| 262 | 3d6da7dc4e99e6f6e5b5196e21b6f504fc530bba Administrators |
| 263 | global:Anonymous-Users Anonymous Users |
Khai Do | 5aaeee3 | 2014-09-05 10:14:32 -0700 | [diff] [blame] | 264 | global:Change-Owner Change Owner |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 265 | global:Project-Owners Project Owners |
| 266 | global:Registered-Users Registered Users |
| 267 | ---- |
| 268 | |
| 269 | This file can't be written to by the +git config+ command. |
| 270 | |
| 271 | In order to reference a group in +project.config+, it must be listed in |
| 272 | the +groups+ file. When editing permissions through the web UI this |
| 273 | file is maintained automatically, but when pushing updates to |
| 274 | +refs/meta/config+ this must be dealt with by hand. Gerrit will refuse |
| 275 | +project.config+ files that refer to groups not listed in +groups+. |
| 276 | |
| 277 | The UUID of a group can be found on the General tab of the group's page |
| 278 | in the web UI or via the +-v+ option to |
| 279 | link:cmd-ls-groups.html[the +ls-groups+ SSH command]. |
| 280 | |
| 281 | |
| 282 | [[file-rules_pl]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 283 | == The file +rules.pl+ |
Fredrik Luthander | a3cf354 | 2012-07-04 16:55:35 -0700 | [diff] [blame] | 284 | |
| 285 | The +rules.pl+ files allows you to replace or amend the default Prolog |
| 286 | rules that control e.g. what conditions need to be fulfilled for a |
| 287 | change to be submittable. This file content should be |
| 288 | interpretable by the 'Prolog Cafe' interpreter. |
| 289 | |
| 290 | You can read more about the +rules.pl+ file and the prolog rules on |
| 291 | link:prolog-cookbook.html[the Prolog cookbook page]. |
| 292 | |
| 293 | GERRIT |
| 294 | ------ |
| 295 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 296 | |
| 297 | SEARCHBOX |
| 298 | --------- |