0x55aa
← Back to Blog

#"git"

8 articles tagged with ""git""

"open-source""github""developer-tools"
10 min read

git bisect: The Binary Search That Finds Which Commit Broke Everything 🔍

Something broke in production. The last 400 commits are suspects. You could review them one by one like a detective with infinite patience and no life — or you could let git do a binary search and find the culprit in 9 commits flat.

Mar 05, 2026
"open-source""github""git"
10 min read

Conventional Commits: Your Git History Shouldn't Read Like a Crime Scene 🔍

You opened a repo's git log and saw 'fix', 'wip', 'asdfgh', 'FINAL', 'FINAL FINAL', 'ok now it works'. That's not a commit history. That's a cry for help. Here's how Conventional Commits turns your git log from a war crime into a changelog maintainers actually love.

Mar 03, 2026
"open-source""github""community"
13 min read

GitHub Releases: Stop Shipping Code Into the Void 🚀

You pushed a tag. You called it 'v2.0.0'. Your users have NO idea what changed, what broke, or whether they should upgrade. Learn how to use GitHub Releases to ship code like a professional maintainer instead of a mystery novelist.

Feb 28, 2026
"open-source""github""git"
8 min read

Git Worktrees: Stop Stashing Your Life Away Every Time You Context-Switch 🌳💻

You're deep in a feature branch, three files open, half a refactor done — and your phone buzzes: 'urgent hotfix needed.' Enter git worktrees: the feature that lets you have multiple branches checked out simultaneously without the stash-and-pray ritual.

Feb 25, 2026
"open-source""github""git"
10 min read

Conventional Commits: I Stopped Writing 'fixed stuff' and My Changelogs Started Writing Themselves 🤖📝

My git log used to read like a crime scene: 'fix', 'update', 'stuff', 'asdfgh'. Then I discovered conventional commits and suddenly my CI was generating perfect changelogs and bumping versions without me touching a thing.

Feb 22, 2026
"open-source""github""git"
10 min read

Git Bisect: The Bug-Hunting Superpower That Found a 2-Year-Old Flaw in 5 Minutes 🕵️

I blamed three different team members before using git bisect to discover the regression was mine. From 14 months ago. On a Friday afternoon. This tool is equal parts powerful and humbling.

Feb 21, 2026
"open-source""github""git"
14 min read

Fork vs Clone: Stop Confusing These GitHub Basics 🍴📋

Been 'cloning' repos when you should fork? Fork but never sync? Let me explain the difference once and for all, plus the fork workflow that actually makes sense for open source contributions.

Feb 04, 2026
"git""developer-tools""automation"
14 min read

Git Hooks: The Secret Automation Living in Your `.git` Folder ⚡🪝

You commit broken code, push to main, and realize you forgot to run tests... again. Git hooks are sitting in your .git folder laughing at you. Let me show you how to automate ALL the things you keep forgetting!

Jan 29, 2026