Alternatives
Products that do what I build a terminal-friendly static file server does
If you ask why there was .hg and .hgignore in a Git repository, it's because I completely forgot this project is my first ever project using Mercurial as SCM. As such, I foolishly `git init` the repository and have to update both .gitignore and .hgignore to finish the changes. You can also see the Mercurial version of this thing at here: https://hg.sr.ht/~tsukii/robin
- 1

- 2H1
This is the thing I've been busy with for the past 18 months, over which it has grown from a skunkworks project into a real-world product. This is going to be my first microISV and even if it's a colossal commercial failure, I'm looking forward to the experience of product development. To ship HgLab, I first effectively rewrote Mercurial Core in C# (https://bitbucket.org/hglab/hgsharp), and then built on that to first deliver a bare-bones read-only repository browser and then a full-fledged Mercurial Server. I'm open to any kind of feedback. And wish me luck!
2013 · hglabhq.com
- 3AS
2020 · github.com
- 4

- 5CC
We're two engineers that got fed up with context switching. Why do we need to do a git push, open a browser tab, wait for some task to actually start, bite nails (or read HackerNews) for 10 minutes or more while dependencies are being installed for the 100th time and finally end up with an invalid YAML error. And for some reason this usually happens in the final stage of the pipeline leading up to the inevitable git commits "Fixed", "Fixed again", "Test", "Really fixed this time". We can do better. We set out to build Zippy. A CI/CD system that works from your terminal. No context…
Mar 2026 · zippy.sh
- 6LP
2016 · github.com
- 7IM
2021 · github.com
- 8TB
2018 · github.com
- 9IB
I finally got fed up with making work + personal Git repos work on my machine. Ever clone a work repository and accidentally make commits using your personal email? Or forget how to make your work repos use your work SSH key? Yeah... same. So I built the tool I've always wanted. GitPersona - a CLI tool for managing many git profiles on a single machine. Shoutout to my boy Codex for helping me finally ship this.
Mar 2026 · github.com
- 10GM
2015 · github.com
- 11GX
Hi, I built a little service to fetch .gitignore file on terminal. I built this to avoid finding gitignore files while working without a github repo. I wanted to keep the size as small as possible ( 2.2kb ) and the UI simple. I would love to hear your feedback on this. https://gitignore.xyz P.S this is my first fully completed app in production. I would love to hear your feedback on this. edit: I'm running this on scaleway node in Paris, that's why the 100ms+ latency
2016
- 12OC
Hi HN, I built a small tool called oci2git, which converts OCI container images into Git repositories. Each layer in the container image becomes a separate Git commit. I created it to make it easier to inspect and reason about container image contents. Instead of dealing with compressed tarballs or running docker diff, you can just browse the resulting Git repo, run git diff, use git blame, or even bisect layers. It's a new way to debug, audit, and understand how container layers evolve. It's written in Rust and currently supports images from local OCI layouts and remote registries (like…
2025 · github.com
- 13GG
2021 · mapps.makeall.dev
- 14AC
2021 · github.com
- 15IC
Hey HN, I built ShadowGit a while back to automatically commit code every minute to a hidden git repo (.shadowgit.git). Original goal was to easily rollback when AI tools break things. But I discovered something interesting: this minute-by-minute history is perfect context for AI assistants. So I built an MCP server that lets Claude/Cursor query this history using native git commands. The results surprised me: Before: Claude would read my entire codebase repeatedly, burning 15,000+ tokens to debug issues. After: Claude runs `git log --grep="drag"` finds when drag-and-drop worked,…
2025 · shadowgit.com
- 16CC
My team uses Claude Code daily, and the sessions have become some of the most useful artifacts we produce. But they're trapped in ~/.claude/projects/ on whichever laptop they happened on. There's no good way to hand a colleague "the session where I untangled the migration" so they can claude --resume it and keep going from where I left off. Enter ccgs: Share Claude Code sessions through an orphan branch (@ccgs/) in your existing repo's remote - Session files carry the author's absolute paths. On pull, ccgs rewrites the working dir back to your path so resume actually…
Jun 2026 · github.com
- 17GW
I context-switch a lot. Someone pings me about a bug while I'm mid-feature, and I either: 1. `git stash` (and forget what's in there forever) 2. Make a "WIP: stuff" commit (clutters history) 3. Ignore them until I'm done (not great) Worktrees solve this perfectly – each task gets its own directory, fully isolated. But the commands are clunky and I kept forgetting the syntax. So I built a small CLI wrapper. Now my workflow is: ``` wnew feat/login # creates worktree + cd into it # ...do work... wcd # fuzzy-pick another worktree, cd there wgo main # jump straight to main ``` Dashboard…
Jan 2026 · github.com
- 18VW
I just want to share this little weekend experiment. I used gource (usually intended to show git repo changes over time) with web server logs. Video is at: https://www.youtube.com/watch?v=NqV8wqy0v7w It's showing the web server activity for a non profit, requesting and receiving payments, accepting new members, as well as having the two admins making changes around. This is actually surprisingly easy to do with gource by just providing a log file in a pretty simple format instead of providing the git repo. This is a low traffic server but I find it quite interesting as a way…
2025
- 19GF
2014 · github.com
- 20RA
I built a CLI tool that lists out all the local git repos within a directory in an easy to read table format including relevant information such as last modified date and the status of branches in the repo, along with whether it is synced with remote or not. It also includes a bunch of flags to get exactly what you want in the format you want. I got this idea as I was trying organize the large amount of local git repos I had. I also found it particularly useful when traveling since I use a different device. In these cases, it is really helpful to know which local git repos I forgot to push…
2024 · github.com
- 21GG
Coming from the land of the mono-repo (ex-googler), I decided to embrace the multi-repo, plain-git style. Methought, “hey, submodules, what could possibly go wrong”. Well, how about everything: detached HEADs, impossibly tedious commit management, and just about everything else. "OKAY" I said, a simple Python script should be fine, right? Well, NO. It turns out to be more complex. So I thought "others have got this, right? My time in mono-repo land was long and someone will have solved this" — well, yeah NAH. I won't bore you (the longer, boring comparison is in the docs) but everything I…
Jul 2026
- 22VP
# Show HN: VeilStream - Per-Branch Preview Environments ## Optionally with sanitized production data I've been building VeilStream to solve a problem I kept running into: Rigorous evaluation of changes, such that they won't break production is hard. Staging is shared and often broken. Pulling to local setups are a pain. So PRs get a quick code skim and a "LGTM." VeilStream spins up isolated preview environments from your `docker-compose.yml`, (optionally) complete with a sanitized snapshot of your production database. ## What happens when you open PR #247 1. GitHub webhook hits our API 2. We…
Feb 2026 · veilstream.com
- 23CA
Hello HN! I built a pre-commit code scanner that checks your staged changes for security vulnerabilities every time you run 'git commit'. I am an inexperienced programmer and this is my first personal project. Any feedback, positive or negative, big or small, relevant or not, would be greatly helpful and appreciated! The tool requires Gitleaks and Python to run, you will also need to use your own AI API key, which I understand is a big setup friction. You can check out my demo video instead if that is more convenient: https://youtu.be/ZYe5vWFRTus?si=9Fv8DhTHktwDK4mV Thank you…
Jun 2026 · github.com
- 24

Ranked by how close each launch is in meaning, then by votes. Refine with a description →