From 8d422881bcffc038908ad4e20d17cc430835a2ca Mon Sep 17 00:00:00 2001 From: flip1995 Date: Thu, 27 May 2021 11:09:49 +0200 Subject: [PATCH] Document to only push the created tag and not everything --- doc/release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/release.md b/doc/release.md index eaa6a9af277d2..e0af9bf062572 100644 --- a/doc/release.md +++ b/doc/release.md @@ -94,7 +94,7 @@ After finding the Clippy commit, it can be tagged with the release number. # Assuming the current directory corresponds to the Clippy repository $ git checkout $SHA $ git tag rust-1.XX.0 # XX should be exchanged with the corresponding version -$ git push upstream master --tags # `upstream` is the `rust-lang/rust-clippy` remote +$ git push upstream rust-1.XX.0 # `upstream` is the `rust-lang/rust-clippy` remote ``` After this, the release should be available on the Clippy [release page].