How to disable git gpg signing

前端 未结 4 607
执念已碎
执念已碎 2021-02-02 06:36

I\'m using git gpg signing. I want to disable it. I\'ve set .gitconfig

[user]
    name = NAME
    email = EMAIL
    signingkey = KEY
...
[commit]
           


        
4条回答
  •  梦谈多话
    2021-02-02 06:36

    To temporarily disable GPG signing for the next commit:

    git -c commit.gpgsign=false commit
    

提交回复
热议问题