diff --git a/docs/contributors/releasing_minikube.md b/docs/contributors/releasing_minikube.md index 0151a7f152..53863ea3fe 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