Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] 'Follow Renames' feature: Need Code Review -- fix for #302549

On Thu, Jun 16, 2011 at 17:10, Benjamin Gandon <benje@xxxxxxxxxx> wrote:
> Hello,
>
> I divided the patch in two distinct parts:
>  1. http://egit.eclipse.org/r/3742 -- Introducing a FilterPath class that
> helps for implementing the feature.
>  2. http://egit.eclipse.org/r/3743 -- Adding the 'Follow Renames' feature to
> the history page.
>
> Anyone available to review those?
>
> Sorry, I missed some guidelines for commit message formating: they miss the
> bug ID, and signed-off-by info.
> Is there a way for me to fix that?

You can use the Git command line tool, execute "git rebase -i HEAD~2",
this means, you want to rebase/edit the last two commits. Then in the
editor replace the words pick by reword, and save and exit the editor.
Then you can change the commit message for every commit. Insert the
following lines:

Bug: bugid
Change-Id: the change id from Gerrit (in the upper left corner of your
changesets
Signed-off-by: Benjamin Gandon <benje@xxxxxxxxxx>

After that, push again to Gerrit, and your changes of the commit
message should appear as new patchsets in both changes.

Manuel


Back to the top