You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each Pull Request description consists of a **header**, a **body** and a **footer**. The header has a special format that includes a **type**, a **scope** and a **subject**:
14
+
15
+
```commit
16
+
<type>(<scope>): <subject>
17
+
<BLANK LINE>
18
+
<body>
19
+
<BLANK LINE>
20
+
<footer>
21
+
```
22
+
23
+
The **header** is mandatory and the **scope** of the header is optional.
24
+
25
+
The **footer** can contain a [closing reference to an issue](https://help.github.com/articles/closing-issues-via-commit-messages).
26
+
27
+
#### Revert
28
+
29
+
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
0 commit comments