Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Contributing

nathany edited this page Oct 4, 2014 · 2 revisions

Contributing to go-plus is easy. Follow the instructions below, and use CoffeeScript when making your changes:

  • Fork this repository
  • Install the Atom command line tools (Atom > Install Shell Commands)
  • Open your terminal
  • Run apm develop go-plus
  • cd ~/github/go-plus
  • git remote rename origin upstream
  • git remote add origin https://github.com/yourgithubusername/go-plus.git
  • git checkout -b your-feature-branch-name
  • atom .
  • Write a test that exercises the feature you're adding
  • Make the test pass
  • Ensure that tests pass
    • On the command line: apm test
    • In Atom, use the CTRL + ALT + + P keyboard shortcut
  • Commit your changes
  • Publish your feature branch: git push origin your-feature-branch-name
  • Go to your Github repo (https://github.com/yourgithubusername/go-plus) and create a pull request
Clone this wiki locally