From 3ed98649f44eb680d2a1a1da43aac830268e2660 Mon Sep 17 00:00:00 2001 From: Mathias Preiner Date: Fri, 1 Apr 2022 13:28:31 -0700 Subject: [PATCH] make-release: Clarify instructions for pushing commits and tag. (#8524) --- contrib/make-release.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/make-release.py b/contrib/make-release.py index 15ead78e3..aa5dff939 100755 --- a/contrib/make-release.py +++ b/contrib/make-release.py @@ -117,4 +117,5 @@ if __name__ == '__main__': print( 'If you are sure you want to push this release, use the following command:' ) - print(f'\tgit push origin {tagname}') + print(f'\tgit push origin main # push commits') + print(f'\tgit push origin {tagname} # push tag {tagname}') -- 2.30.2