Bug 1675299 - [devtools] Improve the guidelines for commit naming r=jdescottes

Differential Revision: https://phabricator.services.mozilla.com/D95864
This commit is contained in:
Andrey Bienkowski 2020-11-04 16:39:46 +00:00
Родитель f0682f7b1d
Коммит 4de647d3c5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4,12 +4,12 @@ First, commit your changes. For example:
```bash
hg add /path/to/file/changed
hg commit -m "Bug 1234567 - Implement feature XYZ. r=name,name2!"
hg commit -m "Bug 1234567 - [devtools] Implement feature XYZ. r=name,name2!"
```
The commit message explained in detail:
- `Bug 1234567` - The number of the bug in bugzilla.
- `- Implement feature XYZ.` - The commit message.
- `- [devtools] Implement feature XYZ.` - The commit message, with a "devtools" prefix to quickly identify DevTools changesets.
- `r=name` - The short form to request a review. Enter the name you found using the
instructions in the [previous step](./code-reviews-find-reviewer.md).
- `,name2!` - You can have more than one reviewer. The `!` makes the review a *blocking* review (Patch can not land without accepted review).