Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 931 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (25 loc) · 931 Bytes

DCO + License

By contributing to helmfile, you accept and agree to the following DCO and license terms and conditions for your present and future Contributions submitted to the helmfile project.

DCO License

Developing helmfile

Locate your GOPATH, usually ~/go, and run:

$ go get github.com/helmfile/helmfile

$ cd $GOPATH/src/github.com/helmfile/helmfile

$ git checkout -b your-shiny-new-feature origin/main

...

$ git commit -m 'feat: do whatever for whatever purpose

This adds ... by:

- Adding ...
- Changing ...
- Removing...

Resolves #ISSUE_NUMBER
'

$ hub fork
$ git push YOUR_GITHUB_USER your-shiny-new-feature
$ hub pull-request

Note that the above tutorial uses hub just for ease of explanation. Please use whatever tool or way to author your pull request!