Skip to content
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
15 changes: 13 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,18 @@ git push

#### Cherry-pick PRs to release branches

Once you fork the project, you will notice that there are a number of branches related to Kyverno's releases such as release-1.7. You can view the list of remote branches by using the command below:
Add repository as remote

```sh
git remote add <name> https://github.com/kyverno/kyverno
```
Then fetch the branches of remote:

```sh
git fetch <name>
```

You will notice that there are a number of branches related to Kyverno's releases such as release-1.7. You can always view the list of remote branches by using the command below:

```sh
$ git branch -r
Expand Down Expand Up @@ -133,4 +144,4 @@ git commit -s -m 'This is my commit message'

## Release Processes

Review the Kyverno release process at: https://kyverno.io/docs/releases/
Review the Kyverno release process at: https://kyverno.io/docs/releases/