Document git tag command in release process, fixes #364

This commit is contained in:
Duke
2023-12-02 10:27:16 -05:00
parent b0027d8c64
commit 540bc9b287

View File

@@ -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