Ken Muse
What Is MCP and Why Do Developers Care?
Ever notice how AI assistants are brilliant at reasoning but can’t actually check your database or call your APIs? You end up playing middleman, copying data back and forth. Model Context Protocol (MCP) changes that. It’s an open standard that lets AI assistants connect directly to your data sources and tools while keeping you in control. Let me show you more about what it is, how it works, and why it matters.

Read this article

Configuring GitHub Runners With a Dotfiles Action
Your dotfiles repository already personalizes your development environments, but what if it could do more? What if the same configurations that protect your local machine could secure your CI/CD pipelines? By adding a simple composite action to your dotfiles repo, you can apply security settings and configurations to any GitHub runner – without managing tokens or cloning anything yourself. Let me show you how.

Read this article

Storing Data in Git Objects With Notes

Storing Data in Git Objects With Notes

Have you ever needed to attach a build number, test result, or code review comment to a commit after it’s already been pushed? Modifying the commit history isn’t an option—especially if you sign your commits—but Git has a feature designed exactly for this. In this post, I’ll show you how to use Git notes to annotate your commits with extra metadata without breaking your history or invalidating your signatures.

Read this article

Why Your Perforce Branch History Is Missing in Git
If you’ve ever migrated a repository from Perforce to Git and wondered where all your beautiful branch and integration history went, you’re not alone. I’ve helped teams through this transition, and the migration process always creates this confusion. The issue isn’t a bug in the migration tool. It’s a fundamental difference in how these systems think about branches and history. Let me walk you through why this happens, what it means for your migrations, and why training your team is just as important as the technical migration itself.

Read this article

Understanding How Git Merges Work
Ever wonder what actually happens when you run git merge? Spoiler – it’s not magic, just some clever graph walking.

Read this article