Update README.md

This commit is contained in:
Jeff Regan
2020-09-18 13:15:52 -07:00
committed by GitHub
parent f03fdc09cb
commit 6aa72b66ef

View File

@@ -25,31 +25,33 @@ of one of the several [Go modules] in this repository.
> >
> In commands this is roughly: > In commands this is roughly:
> >
> - cd ~/gopath/src/sigs.k8s.io/kustomize > ```
> - git fetch upstream > cd ~/gopath/src/sigs.k8s.io/kustomize
> - git co master > git fetch upstream
> - git rebase upstream/master > git co master
> - make prow-presubmit-check > git rebase upstream/master
> - gorepomod release kyaml # undraft the release > make prow-presubmit-check
> - cd ../cli-utils > gorepomod release kyaml # undraft the release
> - gorepomod pin kyaml > cd ../cli-utils
> - merge the PR > gorepomod pin kyaml
> - gorepomod release {top} > merge the PR
> - cd ../kustomize > gorepomod release {top}
> - # manually pin cmd/config/go.mod to the new cli-utils > cd ../kustomize
> - gorepomod pin kyaml > # manually pin cmd/config/go.mod to the new cli-utils
> - # merge the PR > gorepomod pin kyaml
> - gorepomod release cmd/config # undraft the release > # merge the PR
> - gorepomod pin cmd/config > gorepomod release cmd/config # undraft the release
> - # merge the PR > gorepomod pin cmd/config
> - gorepomod release api # undraft the release > # merge the PR
> - gorepomod pin api > gorepomod release api # undraft the release
> - # merge the PR > gorepomod pin api
> - gorepomod release kustomize # undraft the release > # merge the PR
> - gorepomod unpin api > gorepomod release kustomize # undraft the release
> - gorepomod unpin cmd/config > gorepomod unpin api
> - gorepomod unpin kyaml > gorepomod unpin cmd/config
> - # merge the PR > gorepomod unpin kyaml
> # merge the PR
> ```
Briefly: Briefly:
- The repo HEAD is in a clean state (all tests passing). - The repo HEAD is in a clean state (all tests passing).