简体   繁体   中英

How to commit changes to Git repository anonymously

I have an empty git repository (hosted on GitHub or wherever).

I want to commit my changes to it anonymously like the below picture. How should I setup my git configuration (preferably project specific config) to achieve that?

下图

Thanks

PS: In case you're asking But why? , check out the conferences Double-Blind review process .

From inside your local git repository;

git config user.name 'Anonymous'
git config user.email '<>'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM