This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit a7653eec5c6a6e3995a2a7050059b5b0768c2d8d Author: Shad Storhaug <[email protected]> AuthorDate: Fri Nov 13 13:29:12 2020 +0700 website: Updated make-release.md to provide more reliable way to tag the release commit --- websites/site/contributing/make-release.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/websites/site/contributing/make-release.md b/websites/site/contributing/make-release.md index afea4c7..617ffe3 100644 --- a/websites/site/contributing/make-release.md +++ b/websites/site/contributing/make-release.md @@ -134,10 +134,10 @@ Perform basic checks against the release binary: - On your local Git clone, tag the repository using the info in `RELEASE-TODO.txt` - - `git log` - - Verify the HEAD commit hash of the local repo matches that in `RELEASE-TODO.txt` - - `git tag -a <tag from RELEASE-TODO.txt> -m "<tag from RELEASE-TODO.txt>"` - - `git push <remote-name (defaults to origin)> master --tags` + ```powershell + git tag -a <tag from RELEASE-TODO.txt> <commit hash from RELEASE-TODO.txt> -m "<tag from RELEASE-TODO.txt>" + git push <remote-name (defaults to origin)> master --tags + ``` - [Sign the `release` artifacts](https://infra.apache.org/release-signing.html) using GnuPG
