Github user junichi11 commented on the issue:
https://github.com/apache/incubator-netbeans/pull/47
@emilianbold Yes. Are the following steps OK if I push my changes myself?
```
$ cd incubator-netbeans
$ git remote add upstream-apache
https://git-wip-us.apache.org/repos/asf/incubator-netbeans
$ git checkout master
$ git pull upstream-apache master
$ git push origin master
$ git checkout module-review-branch
$ git rebase master module-review-branch
$ git push -f origin module-review-branch
$ git checkout master
$ git merge module-review-branch
$ git push upstream-apache master
```
---