From 540bc9b287a4d14abe6c9725a7f6caf1b491672a Mon Sep 17 00:00:00 2001 From: Duke Date: Sat, 2 Dec 2023 10:27:16 -0500 Subject: [PATCH] Document git tag command in release process, fixes #364 --- doc/release-process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/release-process.md b/doc/release-process.md index 497ad0daa..566de1b1f 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -26,7 +26,8 @@ If the last command has no output, congrats, there is nothing to do. If the last ``` git checkout master git merge --no-ff dev # using the default commit message is fine -git push origin master +git tag vX.Y.Z # this creates a tag vX.Y.Z on current master, or you can let gitea do it later +git push --tags origin master git checkout dev git merge master git push origin dev