Temporarily override your git credentials during a shell session
Great when messing around in repos in random servers:
now, git commit yourself away.
export GIT_AUTHOR_EMAIL="pimp@example.com" export GIT_AUTHOR_NAME="Pimptastic Coder Quick" export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
now, git commit yourself away.