// read-only source mirror
dumbsms.git
Clone the dumbsms source straight from this site. It's the real git repo, served as static files — you can pull, but you can't push.
$ git clone https://dumbsms.com/dumbsms.git git clone https://dumbsms.com/dumbsms.git Submitting a change
No accounts, no pull requests — just patches, the old school way.
- Clone, then commit your change on a branch.
-
Turn your commits into a patch file:
$ git format-patch origin/main --stdout > my-change.patchgit format-patch origin/main --stdout > my-change.patch -
Email
my-change.patchas an attachment to e2@dumbsms.com.
Set up for git send-email? That works too. Large or binary
changes? Send a git bundle instead. Everything gets applied
with git am.
Recent commits
| 2ba62b4 | 2026-07-22 | performance, reviews, and refactoring. release v0.1.1 | E2 |
| ec1b3ee | 2026-06-25 | Initial public release | E2 |
Served as static files over the dumb HTTP protocol. No server, no push.