On Tue, 14 Jan 2020 14:13:45 GMT, Guru Hb <g...@openjdk.org> wrote: >> The pull request has been updated with a new target base due to a merge or a >> rebase. The incremental webrev excludes the unrelated changes brought in by >> the merge/rebase. > > Partially reviewed, Need to re-check after the change of branch.
Oh, I see the problem. In addition to rebasing you need to exclude any commits that are from the `master` branch and are not your. So what you really need to do is: git rebase -i upstream/jfx14 <EDIT THE LIST OF COMMITS AND DROP ANY THAT ARE NOT YOURS> git push --force origin JDK-8236912 Sorry for not anticipating this problem. ------------- PR: https://git.openjdk.java.net/jfx/pull/85