Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Latest commit

 

History

History
53 lines (34 loc) · 1.2 KB

CONTRIBUTING.md

File metadata and controls

53 lines (34 loc) · 1.2 KB

How to contribute

Thank you for considering contributing to vouch4cluster!

Getting Started

$ go get -u github.com/Shopify/vouch4cluster
  • Fork this project on GitHub. :octocat:

  • Setup your fork as a remote for your project:

$ cd $GOPATH/src/github.com/Shopify/vouch4cluster
$ git remote add <your username> <your fork's remote path>

Work on your feature

  • Create your feature branch based off of the master branch. (It might be worth doing a git pull if you haven't done one in a while.)
$ git checkout master
$ git pull
$ git checkout -b <the name of your branch>
  • Code! ⌨️

    • Please run go fmt and golint while you work on your change, to clean up your formatting/check for issues.
  • Push your changes to your fork's remote:

$ git push -u <your username> <the name of your branch>

Send in your changes