8000 Update release.md [skip ci] by mbohlool · Pull Request #148 · kubernetes-client/python · GitHub
[go: up one dir, main page]

Skip to content

Update release.md [skip ci] #148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions devel/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ should be on the same branch. To update an existing branch:

```bash
export RELEASE_BRANCH=release-x.x
git checkout RELEASE_BRANCH
git checkout $RELEASE_BRANCH
git fetch upstream
git rebase upstream/$RELEASE_BRANCH
git pull upstream master
```

Expand Down Expand Up @@ -64,7 +65,7 @@ and commit changes (should be only version number changes) to the release branch
Name the commit something like "Update version constants for XXX release".

```bash
git push upstream RELEASE_BRANCH
git push upstream $RELEASE_BRANCH
```

## Make distribution packages
Expand Down
0