Change Git commiter in Netbeans

前端 未结 6 1728
南笙
南笙 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:50

    Try setting it in the local gitconfig file .git/config:

    [user]
            name = yourname
            email = youremail
    

提交回复
热议问题