Developers are always being told to document and collaborate on their code in case they are "hit by a bus."  Usually "hit by a bus" is code for "go to another company," but the point is the same: if you are a developer with unique knowledge of code, that knowledge is at risk if you depart either your job or this life.

I got interested in the problem of identifying and quantifying that risk, and Git by a Bus is the result.  It analyzes the history of your git repository (there is also experimental svn support), estimates unique knowledge per file per developer or group of developers, and then writes an html summary of unique, at-risk, and orphaned knowledge for each project and file in your repository.

If you're interested in trying it out or hacking on the code, HubSpot has let me open the source, which is available on github here.  Read on for more details on how it works.

HubSpot Git By A Bus

 

I experimented with a few different models for unique knowledge as I was writing the script, but the one I settled on is pretty simple and has the virtue of allowing you to estimate risk with the joint probabilities of more than one developer being hit by a bus.  

In the final model, the "knowledge" contained in a file at any point in time is represented as the number of lines in the file plus an adjusted "churn" value.  "Churn" is the number of lines that are estimated to be changed rather than added in a revision, and we multiply by a constant (by default 0.1) to translate that churn into a knowledge value.  In other words, we estimate that for every line added to the file, one knowledge point is added, for every line removed, one knowledge point is removed, and for every ten lines changed, one knowledge point is added.

Using this model, Git by a Bus marches chronologically through the log of each file in your repository, applying the following algorithm for each revision:

  • If the revision resulted in a net gain of lines, assign that net gain as unique knowledge to the author of the revision (we'll call him A).
  • If the revision resulted in a net loss of lines, find the percentage of the total knowledge represented by those lines and destroy that percent of unique knowledge held by each dev or group of devs.
  • For the "churn" of the revision, as defined above, multiply it by the churn knowledge constant (0.1 by default) and assign that as new unique knowledge to A.
  • For the "churn" of the revision, as defined above, multiply it by 1 - the churn knowledge constant.  That gives us an estimate of knowledge that used to be unique to other developers or groups of developers, but which A now shares.  Find the percentage of the total knowledge of the file represented by this newly shared knowledge, and then for each dev or group of devs that does not include A, remove that percentage of their unique knowledge and assign it to a group including the original dev or group of devs as well as A.

At the end of this process, we have basically built up a venn diagram of how all the knowledge in the file is distributed.  For example, if three devs A, B, and C had participated in a file's history, the output of our algorithm would show how much knowledge each dev held uniquely, how much A and B held jointly, or A and C, or B and C, and how much estimated knowledge was shared between all three.

Now, using supplied input files that tell us which devs have already departed, and the estimated risk of each remaining dev getting hit by a bus in some time frame, we can calculate:

  • "Orphaned" knowledge--that is, knowledge that was estimated to be held uniquely by a dev or groups of devs who are all departed.
  •  The expected unique knowledge that each file / project stands to lose in that time frame, calculated by multiplying the unique knowledge of each dev or group of devs by the joint probability that all dev or devs in that group will be hit by a bus.  The algorithm assumes that the probability any two devs will both be hit by a bus is independent, so it doesn't take into account devs who bike into work together, are conjoined twins, or enter into bizarre death-by-bus pacts.
so-hiring

Recommended Articles

Join our subscribers

Sign up here and we'll keep you updated on the latest in product, UX, and engineering from HubSpot.

Subscribe to the newsletter