Quick note on cloning, committing, and pushing anonymously on GitHub.
Steps:
Create an anonymous account and repo on GitHub
Clone repo to local computer
Navigate to it
Configure anonymous username and email
git config user.name 'Anonymous'
git config user.email '<>'git add .
git commit -m "initial commit"
git pull# replace username, password, and repository:
git push 'https://username:password@github.com/username/repository.git'Bo\(^2\)m =)