Silo welcomes focused contributions that improve security, reliability, compatibility, packaging, tests, or maintainability. This repository preserves MinIO-compatible interfaces and storage formats, so changes must identify and test any compatibility impact.
Fork the current Silo source repository, create a topic branch, and submit a pull request. Discuss broad or compatibility-sensitive changes in an issue before implementation.
git clone https://github.com/pgsty/silo
cd silo
go build -o silo .
./silo --versiongit remote add lineage https://github.com/minio/minio
git fetch lineageDo not merge an upstream branch into a pull request unless the maintainers have agreed on the scope. Silo intentionally carries a small downstream delta.
Create a separate branch before making code changes:
git checkout -b my-new-feature
Before opening a pull request:
- Add or update tests for changed behavior.
- Run
make verifiers. - Run the smallest relevant package tests, then
make testwhen practical. - Run
make buildand confirm the generated executable issilo. - Explain any preserved
MINIO_*,minio_*,x-minio-*,/minio/*,.minio.sys, ARN, module/import-path, or serialized compatibility name.
After verification, commit your changes with a concise message and a DCO sign-off (see Licensing of Contributions):
git commit -s -am 'Fix object replication retry handling'
Push your locally committed changes to the remote origin (your fork)
git push origin my-new-feature
Pull requests should include motivation, reproduction steps where applicable,
test evidence, compatibility notes, and documentation impact. Public product
documentation is owned by the separate
pgsty/silo.pgsty.com repository.
Silo is licensed under the GNU AGPL v3.0 or later. Its core is Copyright (c) MinIO, Inc.; the combined work can never be relicensed, and this fork does not try to.
-
No CLA. We do not ask you to sign a Contributor License Agreement and we do not take your copyright. Contributions are accepted inbound=outbound: you keep the copyright to your changes and license them under the same AGPL-3.0-or-later as the project itself. The maintainers receive no rights beyond the project license.
-
DCO sign-off required. Every commit must carry a
Signed-off-by: Your Name <you@example.com>trailer certifying the Developer Certificate of Origin 1.1 — your statement that you have the right to submit the code under the project license. Sign each commit with:git commit -sForgot some? Repair your branch with
git rebase --signoffand force-push. CI rejects pull requests containing unsigned commits; the sign-off email must match the commit author email. (Lowercase-sis the plain-text DCO sign-off; cryptographic-S/GPG signing is welcome but independent.) -
Provenance. Only submit code you are entitled to submit. This matters more here than in most projects: Silo carries a downstream delta over an upstream code base, and cherry-picks from the lineage remote or other forks are routine. When relaying a patch written by someone else, preserve original authorship (
git cherry-pick -x, keep the author field and any existingSigned-off-bytrailers) and add your own sign-off as the person passing it along. Never import code from a proprietary distribution. -
File headers. Files derived from upstream keep the original MinIO copyright header unchanged. New files added by this fork use the dual header, followed by the standard AGPL boilerplate:
// Copyright (c) 2015-2025 MinIO, Inc. // Copyright (c) 2025-2026 PGSTY -
Squash merges must keep the
Signed-off-by:trailers in the resulting commit message. -
Authorship and tooling. The human contributor is the author of the commit and the sole signatory of its DCO sign-off. Attribution trailers for assistive tooling (for example
Co-Authored-By:naming an AI assistant) are informational only: they record which tools were used, and do not create authorship, co-authorship, or any copyright claim. Whoever signs off remains responsible for the content of the commit, whatever produced it.
Silo uses Go modules. Preserve the compatibility module and import paths in
go.mod; downstream forks are selected with explicit replace directives.
- Run
go get foo/barin the source folder to add the dependency togo.modfile.
To remove a dependency
- Edit your code and remove the import reference.
- Run
go mod tidyin the source folder to remove dependency fromgo.modfile.
Follow the existing Go style, run gofmt on changed Go files, and keep changes
compact. See the Go project's code review comments.