Skip to content

Instantly share code, notes, and snippets.

@mbbx6spp
Last active December 21, 2023 05:05
  • Star 65 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mbbx6spp/70fd2d6bf113b87c2719 to your computer and use it in GitHub Desktop.
Gerrit vs Github for code review and codebase management

Gerrit vs Github: for code review and codebase management

Sure, Github wins on the UI. Hands down. But, despite my initial annoyance with Gerrit when I first started using it almost a year ago, I am now a convert. Fully. Let me tell you why.

Note: This is an opinionated (on purpose) piece. I assume your preferences are like mine on certain ideas, such as:

  • Fast-forward submits to the target branch are better than allowing merge commits to the target branch. The reason I personally prefer this is that, even if a non-conflicting merge to the target branch is possible, the fact that the review/pull request is not up to date with the latest on the target branch means feature branch test suite runs in the CI pipeline reporting on the review/PR may not be accurate. Another minor point is that forced merge commits are annoying as fuck (opinion) and clutter up Git log histories unnecessarily and I prefer clean histories.
  • Atomic/related changes all in one commit is something worth striving for. Having your developers think about the granularity of their commits in terms of relatedness, cohesiveness, and deployment units makes the changes more manageable. This is my claim and the only evidence I have of it is the difference I have witnessed on teams that went from 1..N commits per feature branch to 1 commit per feature branch. The difference I saw was an awareness one. Developers started to think about viability of deployment of that one unit of change to each of the environments. That wasn't the case before we made the change to one commit per feature branch policy. You can enforce this using Github even, but it's not provided by the Github interface.
  • Being able to publish a review in draft form without prefixing with "WIP" or other general convention (which is totally possible and scriptable in Github; I know I have done it previously) simply makes querying and permission/visibility of those reviews/PRs easier to manage and filter out/in when necessary. Perhaps a minor point.
  • Limiting permissions can provide some merits to helping manage releases and codebase repositories more consistently via automated builds/CI/CD setups.

If you disagree with the above opinions then you will likely not agree with some or more of the following which is why I think Gerrit is better as an overall solution:

  • Gerrit's reviews can be forced to be fast-forward only or rebasable-only. Github's PRs are merge based, which - frankly - disgusts me (just a little). I talk about this above a little but I should warn you of my biases: previously I built CI/CD tooling using Github workflow and it was impossible to reason about the change in a PR now matter what hooks and checks we had on the repository per PR without a LOT of extra work on the tool developer (me). And it wasn't even full coverage of the workarounds I really wanted as a CI/CD pipeline builder. Lots of busy work for very very little value (and a nice UI, sure, I still love Github web UI, but there has to be much more to a trusted partner than a pretty face).
  • Github's PRs do not force you to think about atomic/related changes as one commit. Gerrit's reviews, by its restrictions (i.e. one commit per review), do force developers to think about this much more consciously. I think this is good. Great even.
  • Github's PRs do not track the notion of review rating except loosely in the comments (which are free form). Gerrit's reviews do track this.
  • Gerrit allows you to push draft reviews. There is no such notion in Github.
  • If you want to use the rebase and squash approach in Github (because it's the most sensible, come on) then you can't track the whole history in the pull request. This is a problem. For example, if I provide inline feedback in a pull request and the other developer makes changes based on my comments, I can't view side by side in the UI the diff between the original pull request commit and the new commit without trying to track down the SHA commitish of the original, which is not necessarily easy to find (and not shown in the Github pull request history at all).
  • On the one hand I like that git itself doesn't bake into it a permission model on the repository level, but I do like Gerrit's permission model ON TOP of git. At first I thought it was overkill and sometimes it is. However, I love the idea that in Gerrit I can make it such that only the CI user (e.g. jenkins or travis user) can create tags and push to the Gerrit remote. In this case, only on specific CI triggers are tags created. Tags can't accidentally be created by a developer and pushed to the remote. I'm a fan of consistency and operationalizing release management wherever possible so this is dear to my heart. There are other important areas where I think limiting access to certain features on the repository are useful too, this was just one example.

What Gerrit needs to improve:

  • More coverage of command line options in one place (right now there is gerrit-review and git-review, it would be great to consolidate the CLI consistently for as many of the features available as possible)
  • Better tig integration (which is on the user to update their .tigrc file and new bindings, etc.)
  • Less cluttered UI.
  • More intuitive UI (navigation, etc.)
@subashp
Copy link

subashp commented Jun 15, 2020

Thanks for all those years of wisdom. As someone who used gerrit, github & gitlab for code reviews, I am biased towards using Gerrit. Much simpler UX for code reviews. Btw does anyone has idea about gerrit over github - http://gerrithub.io/?

@charlesr1971
Copy link

I am sorry but this ‘one commit per review’ advantage is a moot point. When I am using GitHub, all I see is the updates I need to review. I don’t look at the commit references and think, “oh, my god, there is more than one commit, here. Let’s panic!”
I just calmly do my code review, moving from one change to the next.

@luismbo
Copy link

luismbo commented Apr 19, 2022

@charlesr1971 no need to panic. The point is that Gerrit's model promotes reviewing/validating each commit independently whereas GitHub promotes reviewing pull requests with multiple commits in one go. Probably a matter of personal/team preference.

@charlesr1971
Copy link

But, if we view things in terms of updates rather than commits, it really doesn’t matter whether there is one commit or a hundred.
Personally, I find Gerrit restrictive. I prefer the freedom of being able to push multiple commits. It also creates a problem, if you want to create a local ticket branch. Changes are reflected across the feature & ticket branch, until the first commit is made. In Gerrit, you should only create one commit per push, which makes it impossible to resolve this issue.

@luismbo
Copy link

luismbo commented Apr 20, 2022

You can push multiple commits in Gerrit and group them together using topics and you can enable the option to submit whole topics (i.e. the whole branch) in one go. Gerrit certainly has drawbacks but restrictiveness is definitely not one of them. It enables lots of workflows.

@mochadwi
Copy link

hmm interesting! thanks for bringing up this!

@emirkmo
Copy link

emirkmo commented Jan 23, 2023

You can push multiple commits in Gerrit and group them together using topics and you can enable the option to submit whole topics (i.e. the whole branch) in one go. Gerrit certainly has drawbacks but restrictiveness is definitely not one of them. It enables lots of workflows.

Can you explain what you mean?

let’s say I am on a roll and knock out 10 tickets, each a commit, some building on others, while others being independent.

how do I push these for review, make changes to commits down in the chain, in a sane way without constantly getting outdated base branches that I have to manually rebase with manual conflicts resolution every single time (nevermind with additional merges from my coworkers)?

Or simply, if I have commit A->B->C ready for review, how do I handle changes on A or B from review (while amending commits)?

@luismbo
Copy link

luismbo commented Jan 24, 2023

After you amend A or B, then C will be modified, yes. But you simply git push the whole branch and the change request for C will be updated accordingly. It won't lose any comments, code reviews, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment