How do I change my author name on GitHub?

前端 未结 4 941
情歌与酒
情歌与酒 2020-12-12 22:08

I\'m new to web development and GitHub. When I commit any changes, these changes are reflected on my GitHub repo under \"unknown (author)\". How do I change this to reflect

4条回答
  •  难免孤独
    2020-12-12 22:42

    Add something like this to a file called ~/.gitconfig (in your home directory):

    [user]
        name = USERNAME
        email = EMAIL_ADDRESS
    

    where USERNAME and EMAIL_ADDRESS are filled in appropriately

提交回复
热议问题