自从设置了 git 提交签名,出了一堆问题
error: unsupported value for gpg.format: ssh
'git log' failed with code 128:'error: unsupported value for gpg.format: ssh fatal: bad config variable 'gpg.format' in file '/Users/maotianrun/.gitconfig' at line 25
Git err:gpg failed to sign the data; fatal:failed to write commit object
git config --global --unset gpg.program
git config --global --unset user.signingkey
git config --global --unset commit.gpgsign
git config --global --unset gpg.format
git config commit.gpgsign false
git config --global commit.gpgsign false
上一篇
Vue Data Resetting Techniques
This article explores different methods for resetting data in Vue.js applications, including resetting the entire data object or specific properties using `this.$data` and `this.$options.data()`. Learn how to efficiently restore your component's data to its initial state.
下一篇
认识 JavaScript document.all
本文讲解 JavaScript 中 `document.all` 的特性,并分析一道关于 `document.all` 和 `valueOf` 方法的代码题,解释其背后的原理,包括 Falsy 值和类型转换。