To hack on this project:
- Install as usual (
go get -u github.com/...
) - Create your feature branch (
git checkout -b my-new-feature
) - Ensure everything works and the tests pass (
go test
) - Commit your changes (
git commit -am 'Add some feature'
)
Contribute upstream:
- Fork it on GitHub
- Add your remote (
git remote add fork [email protected]:mycompany/repo.git
) - Push to the branch (
git push fork my-new-feature
) - Create a new Pull Request on GitHub
For other team members:
- Install as usual (
go get -u github.com/...
) - Add your remote (
git remote add fork [email protected]:mycompany/repo.git
) - Pull your revisions (
git fetch fork; git checkout -b my-new-feature fork/my-new-feature
)
Notice: Always use the original import path by installing with go get
.