From 05ed319493a623f5aeafbf71948d22f207ea68bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Str=C3=B6mberg?= Date: Fri, 18 Jan 2019 16:57:02 -0800 Subject: [PATCH] Do tagging in a direct clone of upstream Otherwise you may run into: `error: src refspec v0.33.1 matches more than one` errors pushing. --- docs/contributors/releasing_minikube.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/contributors/releasing_minikube.md b/docs/contributors/releasing_minikube.md index 0151a7f152fc..53863ea3fe4b 100644 --- a/docs/contributors/releasing_minikube.md +++ b/docs/contributors/releasing_minikube.md @@ -55,12 +55,14 @@ Merge the output into CHANGELOG.md. See [PR#3175](https://github.com/kubernetes/ NOTE: Confirm that all release-related PR's have been submitted before doing this step. -From your own fork of minikube, run: +Do this in a direct clone of the upstream kubernetes/minikube repository (not your fork!): ``` -git checkout master -git tag -a v -m " Release" -git push upstream v +git fetch \ + && git checkout master \ + && git pull \ + && git tag -a v -m " Release" \ + && git push origin v ``` ## Build the Release