Hi Emilian, Am Montag, den 02.10.2017, 16:36 +0300 schrieb Emilian Bold: > Most important, before a master commit: > > git checkout feature > git checkout -b temporary-branch > git rebase -i master > # [Clean up the history] > git checkout master > git merge temporary-branch
why do you insist on an rebase on master? Ok that allows fast-forward merges, but apart from that I don't see the benefit. I never worked with signed PRs, but as rebasing changes history, I don't see this working together. The netbeans code base is highly modular, so merge conflicts are not that likely to occur, so even less need for rebases. Greetings Matthias
