Skip to content

Commit e9d2383

Browse files
committed
docs: improve reverting in CONTRIBUTION guide (#7866)
1 parent 01096b3 commit e9d2383

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

CONTRIBUTING.md

+16
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,22 @@ If the commit reverts a previous commit, use the prefix `revert:`, followed by t
363363
This reverts commit 1234567890abcdef.
364364
```
365365
366+
⚠️ A `revert` prefix will *always* trigger a release. Generally, a commit that did not trigger a release when it was initially merged should also not trigger a release when it is reverted. For example, do not use the `revert` prefix when reverting a commit that has a `ci` prefix:
367+
368+
```
369+
ci: add something
370+
```
371+
is reverted with:
372+
```
373+
ci: remove something
374+
```
375+
instead of:
376+
```
377+
revert: ci: add something
378+
379+
This reverts commit 1234567890abcdef.
380+
```
381+
366382
### Major Release / Long-Term-Support
367383
368384
Long-Term-Support (LTS) is provided for the previous Parse Server major version. For example, Parse Server 4.x will receive security updates until Parse Server 5.x is superseded by Parse Server 6.x and becomes the new LTS version. While the current major version is published on branch `release`, a LTS version is published on branch `release-#.x.x`, for example `release-4.x.x` for the Parse Server 4.x LTS branch.

0 commit comments

Comments
 (0)