Using RBTools with Git¶
There are many ways you can use RBTools with Git. This guide covers the way that we use RBTools ourselves.
A typical workflow looks like this:
Create a branch for each review request (containing one or more commits)
We’ll go over these concepts and then show you an example session.
Step 1: Create a branch for your review request¶
We recommend using one branch for every review request you’re working with. These may all be based on upstream branches, or they might be stacked on top of each other as a series of dependent branches.
Create your branch, and create as many commits on it as you want. These commits will later be posted as a single review request.
Step 2: Post your change for review¶
Once you have a branch full of commits, and you’re ready to post it for
review, you’ll need to check out the branch and run post
.
You don’t need to push!
Review requests are not pull requests. They’re more flexible. You don’t have to push anything anywhere, if you don’t want to.
You means you have more control over what’s posted. You can selectively
post only certain files with rbt post --include
or exclude files
(like auto-generated files) with rbt post --exclude
.
There’s a few useful tips to keep in mind when posting commits for review:
RBTools commands accept standard Git revision ranges.
For example:
rbt post HEAD
orrbt post my-parent..HEAD
.If an explicit revision is not specified, all commits since the nearest matching upstream remote branch will be posted for review.
If you’re working in a branch based on another branch, you’ll probably use one of the above examples, depending on whether you have one or more commits in your branch.
You might want to specify an explicit tracking branch.
RBTools will try to find the “correct” upstream remote branch, but if you’re not using tracking branches and you’re using something other than
origin
, it might find the wrong thing.This is important, because getting it wrong might mean very large or incorrect diffs (Git might try to show a reverted version of many commits worth of changes), and may time out or just fail to validate diffs.
You can specify one using
rbt post --tracking-branch
or, better, configuringTRACKING_BRANCH
in .reviewboardrc.Tip
We recommend you commit a .reviewboardrc file to your repository, and set the
TRACKING_BRANCH
,BRANCH
andLAND_DEST_BRANCH
settings in each main upstream branch. That way, this will always be set correctly for all users.Make sure the branch you’re posting (or its parents) are on top of the latest upstream changes.
RBTools needs to figure out a suitable upstream commit to base your diff (or an intermediary parent diff) off of, so Review Board can find it. It will do its best, but Git is tricky, and it might get it wrong.
It’s safest to make sure your branch looks something like:
o [my-branch] | o [origin/master] | .
Rather than:
o [my-branch] | | o [origin/master] | / o | .
For example:
$ rbt post some-parent..HEAD
Review request #123 posted.
https://reviewboard.example.com/r/123/
https://reviewboard.example.com/r/123/diff/
The posted review request will be populated with your commit’s summary and description. If you have default reviewers set up, they’ll be assigned.
Once you’re done filling out fields on the review request, click Publish to send it out for review.
Step 3: Update from reviewer feedback and re-post¶
Got some reviewer feedback to incorporate into your change? Easy.
Create a new commit or amend an existing one. You can even change the entire ordering of commits in your branch, if you want to.
Run
rbt post -u
to update your review request.This will try to locate the review request you posted to before, comparing the summary and description. It will ask you if it’s not sure which one is correct.
Update any information on the review request, if you want to.
We recommend describing the changes you’ve made, so reviewers know what to look for. The field for this is on the green draft banner.
Publish the new changes for review.
Step 4: Land your change¶
Once you’ve gotten approval to land the change, it’s time to use
rbt land. This will take a local branch (or a review request
ID using -r
, if landing another person’s change) and:
Validate that the change has been approved.
Creates a commit in the target branch (merging/squashing in your changes). The resulting commit (or merge commit) will contain information from the review request, including the URL of the review request.
Optionally pushes the changes upstream (
--push
).
You can choose a branch to land to by using --dest
. To
configure a standard destination branch in your .reviewboardrc,
set LAND_DEST_BRANCH = '<branchname>'
. Make sure this is a local branch,
not a remote branch!
rbt land has a lot of options you
can play with. For Git, you may want to use --squash
(LAND_SQUASH = True
), if you like clean, linear commit histories.
You can edit the commit message before creating the commit using
--edit
.
Step 5: Close your review request¶
Now that your change is in, it’s time to close your review request.
This might happen automatically, if your server and repositories are set up to auto-close review requests when changes are pushed. This can be configured for certain Git hosting services, or done with a custom post-commit hook script in a self-hosted repository.
If you’re using one of these supported repository hosting services, follow the guides to set up automatic closing of review requests:
If you’re not set up this way, no problem. You have two options:
Navigate to the review request and close it.
In Review Board 6 and newer, click Close -> Completed.
In Review Board 5 and older, click Close -> Submitted.
Run rbt close <review request ID> (see the documentation).
Putting it all together¶
Let’s walk through an example using 3 commits across two branches.
First, we’ll create my-branch-1
off of master
with the first 2
commits:
$ git checkout -b my-branch-1 master
$ vim foo.py
$ git commit -a
$ vim bar.py
$ git commit -a
Now let’s create my-branch-2
off of that, with only a single commit:
$ git checkout -b my-branch-2
$ vim foo.py
$ git commit -a
Your tree now looks like this:
o 167ba59 [my-branch-2]
|
o 81abb90 [my-branch-1]
|
o a987ee1
|
o 81a0a95 [master] [origin/master]
|
.
We’ll post my-branch-1
for review. Since we want everything since
origin/master
, this will be very easy. We just post like so:
$ git checkout my-branch-1
$ rbt post
Review request #1001 posted.
https://reviewboard.example.com/r/1001/
https://reviewboard.example.com/r/1001/diff/
Tip
We could have just ran rbt post origin/master..my-branch-1
, if we
didn’t want to switch to the branch first.
That review request will be populated with your commit’s summary and description.
Let’s create a second review request, covering the changes on my-branch-2
.
We’ll take the opportunity to mark these as dependent on our new review
request #1001:
$ git checkout my-branch-2
$ rbt post --depends-on 1001 my-branch-1..HEAD
Review request #1002 posted.
https://reviewboard.example.com/r/1002/
https://reviewboard.example.com/r/1002/diff/
Tip
Since we were on my-branch-2
, and there was only one commit, we could
have just ran rbt post HEAD
.
Or we could have ran rbt post my-branch-1..my-branch-2
, if we didn’t
want to switch branches.
We also could have set the Depends On field on the review request page, or left it out entirely. Just helps reviewers know what to review first.
Let’s make some changes to the commit on my-branch-1, based on review feedback, and post a new diff to the review request:
$ git checkout my-branch-1
$ vim README
$ git commit -a --amend
$ rbt post -u
Review request #1001 posted.
https://reviewboard.example.com/r/1001/
https://reviewboard.example.com/r/1001/diff/
Go to the review request, describe the changes you made, and publish the new changes.
Tip
You can update (-u
), describe the changes
(-m
), and publish (-p
),
all in the same step:
rbt post -u -p -m "Fixed a broken link." HEAD
And now for my-branch-2
. Let’s rebase onto my-branch-1
, edit a file,
and post:
$ git checkout my-branch-2
$ git rebase my-branch-1
$ vim AUTHORS
$ git commit -a --amend
$ rbt post -u my-branch-1..HEAD
Review request #1002 posted.
https://reviewboard.example.com/r/1002/
https://reviewboard.example.com/r/1002/diff/
Hey, we got a Ship It! for both review requests. Great, let’s land these:
$ git checkout master
$ rbt land --dest=master my-branch-1
$ rbt land --dest=master my-branch-2
$ git push
Each branch’s review request will be verified for approval before their
commits are merged onto master
. The old branches will be deleted after
they’ve landed.
Maybe we wanted to land them as linear, squashed commits, one per branch? If
so, we could have used --squash
.
Once you get the hang of this process, you’ll find it much faster band more flexible than methods like pull requests.