15

What is the "Follow-up" button in the Gerrit Review is doing? And when should it be used?

I am using Gerrit 2.13.8.

Lii
  • 11,553
  • 8
  • 64
  • 88
fbenoit
  • 3,220
  • 6
  • 21
  • 32

1 Answers1

9

I saw this feature mentioned here and also played around with it a bit as I was curious myself.

...allows us to create a Follow-Up change. The Follow-Up changes are changes that are based on existing changes. This gives you an opportunity to create a chain of related changes.

The "follow-up" feature allows you to create change-sets very quickly. The parent commit of these change-sets will be the change-set that they were created from (the change-set where the "follow-up" button was used).

This feature could be useful for when you are wrapping up a change but a few additional bugs or tweaks were found that you don't want to include in the current change-set.

You can create change-sets for those follow-up items rather than having to create the change-sets manually.

The text that is typed into the popup box after you click the follow-up button becomes the commit message for the new change-set.

Jonathan.Brink
  • 23,757
  • 20
  • 73
  • 115
  • So this is only like i would fetch that change-set and do a new one based on it and push it to gerrit. But this button creates this in browser only. – fbenoit Aug 11 '17 at 07:41