Generating a GPG key for git tagging

前端 未结 3 662
Happy的楠姐
Happy的楠姐 2020-12-23 14:14

I\'m trying to create signed tags in GitHub using the git command line. I generated a GPG key with a (sample) username Full Name (skytreader)

3条回答
  •  甜味超标
    2020-12-23 14:52

    The committer name is located in your ~/.gitconfig file. Change that entry to a real name (which is how you want to be committing, anyway). You can edit the file in your favorite editor, or just issue:

    git config --global user.name ""
    

提交回复
热议问题