Have a peer review version of a repo on GitHub w/o publishing stuff on main account where it might draw attention and already get stars etc.
yourmail+foo@gmail.com)~/.ssh/config with contents likeHost github-as-anon
HostName github.com
User git
IdentityFile ~/.ssh/id_ed25519_anongithub
IdentitiesOnly yes
$ cd my/anonymous/repo$ git init$ git config user.name "anonymous"$ git config user.email "anony@mous"$ git add -A$ git commit -m 'init'$ git remote add origin git@github-as-anon:user/repo.git
$ git push -u origin master