Setup the repository - blitterated/docker-dev-env GitHub Wiki

Initialize the repo

git init

Setup the git user and email

NOTE: This only makes the changes to the current active repository's config. Use --global to change it for all repositories on your machine.

git config user.name "blitterated"
git config user.email "[email protected]"

double check the settings

git config -l
git config --local -l
git config user.name
git config user.email