code ownership archive

tony's picture

A beginner's guide to GIT BISECT - The process of elimination

The slowest, most tedious way of finding a bad git commit is something we've all done before. You checkout some old commit, make sure the broken code isn't there, then checkout a slightly newer commit, check again, and repeat over and over until you find the flawed commit. Using git bisect is a much better way. It's like a little wizard that walks you through recent commits, asks you if they are good or bad, and narrows down the broken commit. In this blog post, I encourage you to create a fresh git repository and walk through each step. Hopefully, you'll gain an intrinsic understanding of git bisect by the end of the exercise. Read More…

joaquin's picture

Who Owns Your Code? (hint: you should be using the GPL)

It's been a long time coming, but after a short talk with my Lead Drupal Architect, we've officially changed the idea rights in our default proposal to reference the GPL. For years before this we've struggled with language regarding mutual ownership, licensing, etc. Here's the actual language I settled on... Read More…