如何匿名提交对 Git 存储库的更改
How to commit changes to Git repository anonymously
我有一个空的 git 存储库(托管在 GitHub 或任何地方)。
我想匿名提交我的更改,如下图所示。我应该如何设置我的 git 配置(最好是项目特定配置)来实现?
谢谢
PS:如果您问 但是为什么?,请查看会议 Double-Blind review process。
从您的本地 git 存储库中;
git config user.name 'Anonymous'
git config user.email '<>'
我有一个空的 git 存储库(托管在 GitHub 或任何地方)。
我想匿名提交我的更改,如下图所示。我应该如何设置我的 git 配置(最好是项目特定配置)来实现?
谢谢
PS:如果您问 但是为什么?,请查看会议 Double-Blind review process。
从您的本地 git 存储库中;
git config user.name 'Anonymous'
git config user.email '<>'