Skip to content

Learn GO

Alex edited this page Jul 26, 2017 · 2 revisions
  1. Install go https://golang.org/doc/install. We use 1.8.3 because of advanced ability to sort slices.
  2. Install goglang IDE https://www.jetbrains.com/go/. You can use xcode (or any other IDE) but i like goglang better
  3. Use glide https://github.com/Masterminds/glide to manage you packages
   glide get github.com/sirupsen/logrus

installs package and adds it into glide.yaml

  1. Always do your changes in branch
   git checkout -b yourname/yourbranch
   git commit -am "ive changed something"
   git push
  1. Test your code before committing it
   go test --cover $(glide novendor)
Clone this wiki locally