Github user matthiasblaesing commented on the issue:
https://github.com/apache/incubator-netbeans/pull/15
@ebarboni There are two thinks I'd like to ask you:
- Adjust your git settings to include a name and update the existing
commits (see here:
https://www.git-tower.com/learn/git/faq/change-author-name-email)
- Rewrite the history to squash the two commit on CLI (for GUI support you
need to look into the corresponding GUI): Checkout the branch that backs this
PR, run `git rebase -i HEAD~3`, now an editor of your choosing is started,
holding one row per commit (and some help info), there you can reorder the
commits, remove commits and squash them. (I failed to do that on a checkout
from your repository, as git cli requires identity information, that your
commits are missing, see above)
---