In Netbeans 7.1 Git support has been added, however, I don\'t see a way to change commiter information. Currently, it\'s defaulting to my system information which is not what I
this helped me: https://help.github.com/articles/why-are-my-commits-linked-to-the-wrong-user
Configuring git
To check your git setting, run this command:
git config user.email
# you@there.com
If this email is not correct, you can change the global setting:
git config --global user.email "me@here.com"