Alternatives
Products that do what Git rewind – your Git year in review does
I started an experiment to let a WASM-powered webapp interact with a local git repo and see how well this works. It turns out, it works pretty well! I made it into a "git wrapped" tool that shows you when you committed the most, and what languages and files you most touched. Despite the scary prompt when you use the filesystem API everything happens locally and your code stays private. (You can of course also just try it on cloned public github repos). Let me know what you think!
- 1

Your GitHub journey with a personalized year in code
2024
- 2

- 3

- 4GT
2017 · gitorials.com
- 5

- 6GL
2019 · gitduck.com
- 7AS
Hi HN, I built a simple tool that summarizes your team’s git logs into a weekly update that teams can send to leaders, other teams, etc. I hated writing the same update multiple times a week to everyone asking “what’s the status of X” Copy your repo’s commit logs with git log —all —since=“1 week ago”, paste them, and get a well-formatted update. Planning to add Github integration to further automate. Curious what folks think.
2024 · syncup.ai
- 8
- 9RA
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
- 10RA
I really like interactive rebases in Git, but always thought they took too much time and effort. There are tools that make them a lot nicer, like magit or GitUp, but they still ask a lot of you. So over the last two years I built Retcon. In the app, you can manipulate history directly (e.g. drag a commit to a different spot) at all times; even when there’s a conflict waiting for resolution, you can always keep making changes. You're not asked to first make a rebase TODO and then commit to it. So you no longer need to think too much ahead: you just make the changes you have in mind, see what…
2024 · retcon.app
- 11BP
I put together a small prototype that might help folks like me who struggle with keeping their website’s blog active just for SEO. It’s a basic tool: you enter your Git repo details (owner, name, branch), pick a date range, and it generates a short blog post from the commits in that period. The idea is to give small businesses and solo devs a way to keep their blog up-to-date with actual product updates without needing to write new content. Right now, it’s still pretty minimal but I’d really appreciate any feedback, especially if you think this could be useful, or if you have ideas on how it…
2024 · git2blog.streamlit.app
- 12BE
2020 · indorse.io
- 13IC
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
- 14IB
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
- 15VC
Greetings friends! We at Glitch have been hard at work on something very important to us: making software tools easier to use and more accessible. We all remember how hard it was to get started using version control (or maybe we've blocked it from our minds...) but Glitch Rewind makes it easy to get started. It's a fun, simple, and visual representation of your project's history through time. Though the interface is simple it still has the full power of git under the hood! Our Medium post: https://medium.com/glitch/reinventing-version-control-with-g... Or try it out right…
2018
- 16GN
Hey HN, I built a VS Code extension that lets you do Git things without memorizing Git commands. You know what you want to do, move this commit over there, undo that thing you just did, split this big commit into two smaller ones. Git Navigator lets you just... do that. Drag a commit to rebase it. Cherry-pick (copy) it onto another branch. Click to stage specific lines. The visual canvas shows you what's happening, so you're not guessing what `git rebase -i HEAD~3` actually means. The inspiration was Sapling's Interactive Smartlog, which I used heavily at Meta. I wanted that same experience…
Feb 2026 · gitnav.xyz
- 17GW
hey all! Vaibhav and Ethan here. We asked a silly question, "what if you attempted to look into every commit of every repo?" and over the holidays ended up building something kind of fun. Here's some interesting stats: Charlie Marsh has put a crazy amount of work in on UV... so far #1 with over 149k minutes of work this year. (103 days of non-stop coding ).. #2 is me with 85k (just over 59 days...) on BAML #3 - Jérémy M. with 82k (57 days) working on Twenty #4 - Alexander Belanger with 79k (54 days) working on Hatchet Some fun repos:…
2024 · wrapped.dev
- 18BA
I kept failing at building in public for the same reason every time: not fear of judgment, just the blank page after a long day of shipping. Something always happened. But converting "refactored auth flow" or "fixed that edge case that's been annoying me for a week" into something worth posting felt like a second job on top of the actual job. So I'd skip it. Then skip it again. Then stop entirely. The approach: connect your GitHub, it pulls recent commits and repo activity, and generates draft posts for multiple platforms in your tone — raw founder voice, not content creator polish. The idea…
Mar 2026 · smashlanding.xyz
- 19IB
Hey Guys, I created GithubReader.org (open-source, non-profit, most of the code is written by ChatGPT). My motivation: I wanted an easy way to keep a list of repositories I want to learn from and access them quickly. So, I built a search page where I can find repositories by name, like Google. Also, I wanted a nicer way to read Markdown files on my laptop without the GitHub UI, like reading a book. So, I made a custom UI with a back button that takes you to the previous state without jumping pages. The markdown links are sharable, e.g.…
2024 · githubreader.org
- 20GI
2014 · gitcase.io
- 21SG
Hi HN, My friends and I worked at Meta & Google. Once we’d left we realised a lot of the internal tooling didn’t have parity on the outside. Specifically, version control tools outside big tech are much harder to use than Google’s Critique and Facebook’s Phabricator, etc. Git is powerful but notoriously difficult to use [0]. Existing Git clients don’t make life much easier, exposing all the complexity by default. In practice we don’t need an equally complex GUI, and version control can be much easier to use. In our experience, it works best to expose a small number of features for an…
2023 · trunkflow.com
- 22GW
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
- 23BC
Hey HN, I'm Fedor (solo founder). After ~20 years of watching devs fight Git, I'm building Branching. Branching streams your local edits to teammates in real time - no manual push/pull. It's Git-compatible and works offline. Why you might care - Teams see each other's changes instantly instead of in PR-sized batches - Conflicts surface ASAP while context is fresh (LLM-assisted merge is experimental, off by default) - Same GitHub remote, so no migration Ships today - VSCode extension + desktop app (macOS / Windows / Linux) - 3 small product teams have been using it for 1–6…
2025 · branching.app
- 24

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