Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 577 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (21 loc) · 577 Bytes

Contributing

  • Fork it

  • Add a new remote to your local copy that points to your fork.

    cd $GOPATH/src/github.com/jwaldrip/odin
    git remote add <remoteNameOfYourChoice> git@github.com:<githubUserName>/odin.git
    
    
  • Create your feature branch

    git checkout -b my-new-feature
    
  • Commit your changes

    git commit -am 'Add some feature'
    
  • Push to the branch

    git push <yourRemoteAddedAbove> my-new-feature
    
  • Create new Pull Request

Steps borrowed from https://blog.splice.com/contributing-open-source-git-repositories-go/.