Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.
Joe Fitzgerald edited this page Apr 28, 2014 · 4 revisions

Using go-plus

You can install go-plus by opening Atom, going to Preferences > Packages, and searching for go-plus. Alternatively, run apm install go-plus in your terminal.

Contributing To go-plus

  • 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 + CMD + 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