By participating to this project, you agree to abide our code of conduct.
hub is written in Go.
Prerequisites are:
- Build:
make- Go 1.9+
Clone hub from source into some path:
git clone git@github.com:leandro-lugaresi/hub.git
cd hubIf you created a fork clone your fork and add my repository as a upstream remote:
git clone git@github.com:{your-name}/hub.git
cd hub
git remote add upstream git@github.com:leandro-lugaresi/hub.gitInstall the build and lint dependencies:
$ make setupA good way of making sure everything is all right is running the test suite:
$ make testWhen you are satisfied with the changes, we suggest you run:
$ make ciWhich runs all the linters and tests.
Push your branch to your example fork and open a pull request against the
main branch.