Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to commit changes to Git repository anonymously

Tags:

git

git-commit

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?

below picture

Thanks

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

like image 244
Emadpres Avatar asked Jan 26 '18 09:01

Emadpres


People also ask

Can you be anonymous on GitHub?

Anonymous Github is a proxy server to support anonymous browsing of Github repositories for open-science code and data. Instead of sending a link to your repo, you clone it with this service and send the link to their hosted version of the repo generated under the domain https://anonymous.4open.science/.

How do I hide a commit in git?

Hide commit history on Git Branch First, create a new temporary branch and checkout. Now, add all the current files to this temporary branch. Create a new commit. Rename the temporary branch to your old branch name.

What is a git mask?

MaskGIT is a novel image synthesis paradigm using a bidirectional transformer decoder. During training, MaskGIT learns to predict randomly masked tokens by attending to tokens in all directions.


1 Answers

From inside your local git repository;

git config user.name 'Anonymous'
git config user.email '<>'
like image 139
Edmund Dipple Avatar answered Oct 01 '22 12:10

Edmund Dipple