Change Git commiter in Netbeans

前端 未结 6 1760
南笙
南笙 2021-01-30 09:03

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

6条回答
  •  死守一世寂寞
    2021-01-30 09:46

    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"
    

提交回复
热议问题