Install
Code Review & Git Flow
Branch strategies, PR hygiene, merge queues, and trunk-based development.
- 2 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Code Review & Git Flow
When Your Impact Is No Longer Measured in Pull Requests
1+ hour, 29+ min ago (1020+ words) I recently came across a post about the transition from Senior Developer to Tech Lead, and it got me thinking about something I've been experiencing myself: how much your definition of productivity changes when you move into technical leadership. For…...
Semantic Versioning (SemVer): Why Version Numbers Have Three Parts
1+ hour, 59+ min ago (419+ words) Most software version numbers look like 1.6.11 — three numbers separated by dots. This isn't an arbitrary naming choice; it follows a widely adopted convention called Semantic Versioning, or SemVer. This article looks at why version numbers are split into three parts,…...
The Commit That Wouldn’t Merge
2+ hour, 12+ min ago (42+ words) The Invalid State of PR #48 The merge button was gray. Thirty cycles in, that was the only... Tagged with ai, autonomousagents, python....
A PASS over an empty set is the same string as a real pass
2+ hour, 32+ min ago (833+ words) Our journal's tree carries four small instruments that print a verdict over a set of files. A pre-commit hook runs them; the run's output goes into the commit message and the pull-request body, where it serves as the record that…...
What I learned counting AI co-authored commits across 26,000 of my own
7+ hour, 53+ min ago (772+ words) I use Claude Code every day, but if you asked me how much of my code I actually write with it, all I had was a feeling. The data was sitting right there in git the whole time: 960 out of…...
An AI Coding App Was Silently Uploading Your Entire Git History: Inside the ZCode Incident
9+ hour, 13+ min ago (854+ words) If you use an AI coding assistant, you already accept that it sees the code in your current task. What you probably do not expect is for the app to package your entire repository, including every commit you have ever…...
Unknown `.apc/` Paths Should Not Become Hidden Instructions
13+ hour, 36+ min ago (532+ words) A repository can contain a file under.apc/ without making that file part of the APC contract. The APC folder structure specification says consumers ignore unknown paths unless a formal APC extension defines them. That small rule gives teams room…...
Orca: The Agent Development Environment for Running AI Coding Agents in Parallel
19+ hour, 37+ min ago (678+ words) If you use Claude Code, Codex, or another AI coding agent in your terminal, you have probably hit this wall: the agent is busy on one task, you want to start a second one, and now you are juggling branches,…...
Undo a Git Commit: Two Questions Before You Type Anything
1+ day, 38+ min ago (529+ words) "How do I undo a commit?" has four correct answers and three wrong ones, and the difference is not the command — it is two questions you ask before typing anything: Answer those and the command picks itself. Below is each…...
Git Remembers How You Resolved That Conflict — If You Let It
1+ day, 37+ min ago (419+ words) You rebase a long branch onto main. The first commit conflicts in config.yml; you resolve it. The second commit touches the same lines and conflicts in exactly the same way. So does the third. Each time you re-read both…...