To hack on this project:
- Install as usual (
go get -u github.com/path/repo
) - Install dependencies using goop (
goop install
) - Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Build using goop (
goop go install
)
Contribute upstream:
- Fork it on GitHub
- Add your remote (
git remote add fork [email protected]:mycompany/repo.git
) - Push to the branch (
git push -u fork my-new-feature
) - Create a new Pull Request on GitHub
For other team members:
- Install as usual (
go get -u github.com/path/repo
) - 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
.