Inbucket encourages third-party patches. It's valuable to know how other developers are using the product.
tl;dr: File pull requests against the develop
branch, not master
!
If you anticipate your issue requiring a large patch, please first submit a GitHub issue describing the problem or feature. You are also encouraged to outline the process you would like to use to resolve the issue. I will attempt to provide validation and/or guidance on your suggested approach.
Inbucket uses git-flow with default options. If you have git-flow installed,
you can run git flow feature start <topic branch name>
.
Without git-flow, create a topic branch from where you want to base your work:
- This is usually the
develop
branch, example command:git checkout origin/develop -b <topic branch name>
- Only target the
master
branch if the issue is already resolved indevelop
.
Once you are on your topic branch:
- Make commits of logical units.
- Add unit tests to exercise your changes.
- Run the updated code through
go fmt
andgo vet
. - Ensure the code builds and tests with the following commands:
go clean ./...
go build ./...
go test ./...
Thank you for contributing to Inbucket!