Skip to content

Commit 4026c82

Browse files
authored
prefer long options in RELEASE.md (#6136)
using long options make things less mystical, it is clearer what happens. (apart from that i also disallowed `git -a` on my machine in general, as `git commit -a` is considered harmful. as my approach to disallow that is a bit greedy and disallows `-a` just for any git commands, this is the only place where i regularly struggle :)
1 parent cd8cff7 commit 4026c82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ For example, to release version 1.116.0 of the core, do the following steps.
1414
5. Commit the changes as `chore(release): prepare for 1.116.0`.
1515
Optionally, use a separate branch like `prep-1.116.0` for this commit and open a PR for review.
1616

17-
6. Tag the release: `git tag -a v1.116.0`.
17+
6. Tag the release: `git tag --annotate v1.116.0`.
1818

1919
7. Push the release tag: `git push origin v1.116.0`.
2020

21-
8. Create a GitHub release: `gh release create v1.116.0 -n ''`.
21+
8. Create a GitHub release: `gh release create v1.116.0 --notes ''`.

0 commit comments

Comments
 (0)