1.1 KiB
1.1 KiB
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.
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 -s -m 'feat: do whatever for whatever purpose
This adds ... by:
- Adding ...
- Changing ...
- Removing...
Resolves #ISSUE_NUMBER
'
Remember to include a `Signed-off-by: Author Name <authoremail@example.com>`
line in the commit message, either manually or using the `-s` flag.
$ 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!