I'm considering using GitHub as our primary tool for doing code review. With features like in-line commenting and compare view, it seems to have a lot of features that tools like Gerrit have on offer.

Has anyone else used GitHub for this? If so, what is your workflow? And what have your experiences been doing so, both positive and negative?

As I get some thoughts on this and sort out what will work best for us, I'll edit my question to share my own proposed workflow.

EDITED with proposed workflow

Step 0. Set up a post-receive hook using the awesome reviewth.is.

Then:

  1. Commit as usual with commit -a -s, but in the commit message append #reviewthis @username.

  2. If the build fails, the review is skipped until the build is restored.

  3. Reviewer comments on commit line-by-line or at the file level.

  4. GitHub automagically notifies reviewee of comments.

  5. Reviewer notifies reviewee by email when comments are completed with a review summary.

  6. Reviewee replies to reviewer comments within GitHub, allowing the project access to history of code reviews.

My biggest problems are with Step 2 and Steps 4/5. Gerrit works nicely for not asking for reviews unless the build succeeds; I'd like a way to do this within GitHub. Steps 4/5 also have the potential to get annoying (multiple emails) and reduce the automatic nature of the review process (requiring an emailed summary).

We use Hudson as our build server, if that helps.

Any thoughts on these problems would also be helpful.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

I've used it for this. The workflow I've used is to do your work on a topic branch and send a pull request on that branch. The review person(s) examine the code and the commits, using by-line comments (and by-commit). The coder takes that feedback and does a destructive rebase on that topic branch, re-pushes it (rewriting the history on his github repo), then the review cycle repeats until it's acceptable to merge.

Edit: A Githubber posted on his blog describing the method they use to develope github itself, and it's pretty similar to what I proposed. link

link|improve this answer
do you ever run into nasty conflicts or other errors with the other devs that have forked that repo? Do designers do okay with that workflow? I've been considering moving my shop to something like this – Bryce Sep 17 '10 at 16:42
@Bryce: I haven't used this workflow with more than one pull req at a time yet, and only for some open source stuff, so not really any designers involved... I don't know how or if it scales – Daenyth Sep 17 '10 at 17:00
I have used this workflow on a project with a few others where we had many feature branches and we were switching back and forth between branches and merging stuff in. Didn't have any big problems. Git does an awesome job auto-merging. We didn't have to do that much by hand – klaustopher Sep 24 '11 at 12:26
We used this approach on a large project with more then 30 developers. At the beginning only a few core developers had commit rights, so all other have to send pull request to this people. On the one hand it was ok to teach the other developers our code convections and standarts. On the other hand it was not administrable over time, cause the core team was blocked reviewing pull requests. Over time most of all dev got commit rights and every on could review pull request. Which is definitely the way to go. – Andreas Köberle Dec 3 '11 at 21:42
feedback

At my work we pretty much follow the process described at github pull request page for the code review and we are quite happy with it.

link|improve this answer
feedback

I wish there were a way to request code reviews on github.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.