I used GitHub for a while before I could really appreciate what this site is doing to our culture as software developers. GitHub isn't just a neat tool: it's a revolution in the making.
GitHub is a social platform for developing software, built around git. The use cases for git have always been interesting, but not necessarily compelling. GitHub builds on the strenghts of git, and the result is a brand new approach to writing and sharing code. While git takes care of the technical issues like forks and merges, GitHub takes care of the social issues like pull requests and tracking forks.
Just think of a typical development problem: patches. Your project uses a third-party library, and that library has a bug. Here is how you usually deal with the problem if the library is proprietary:
- You contact the producer's customer service and report the problem.
- You sit on your hands until the company fixes the problem. If ever.
- You go to the library project's forum and report the problem.
- You sit on your hands until the authors fix the problem. Eventually.
Now, here is what you do with GitHub:
- You fork the library.
- You fix the problem.
- You use your own forked library in your project.
- You send a pull request to the original library.
Now look at step 2, the remaining difficult step. To make it worth the trouble, you need a project that is easy to setup, easy to understand, and well covered by tests. So GitHub is a perfect fit for languages that promote clear, concise code and for communities who take pride in unit testing and easy project setup.
Suddenly, complicated open source projects feel so last century. By removing all accidental difficulties of patching, GitHub tips the balance towards projects that are trivial to set up and test, and languages that promote easy change. If I need to pick between two projects, I'll probably pick the one that's easier to patch over the one that has the most bells and whistles. Month by month, GitHub is shifting our collective coders' hivemind towards simplicity.
After all, wasn't this one of the original promises of open source? "It's your code. You'll never be stuck."
GitHub is really neat.
ReplyDeleteWhat I am not so enthusiast about is the "issue" feature and so the bug tracking. They could really use a big improvement!
And by that I mean the opportunity to just bring to the dev attention a bug or something else without being involved directly in the code (not everyone is so good at programming! ;) )
Google Code's bug tracking is better (and more classical), imho, and GitHub could just be "inspired" by that ;)