Git playground

# Create an empty repo:
git init

# Set user name and email for the repo
# (they are required):
git config user.email alice@example.com
git config user.name "Alice Zakas"

# Use the --global flag to set the name and email
# at the OS user level instead of the repo level.

# Show user and repo configs:
git config --list --show-origin

Git is a distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

⛫ homepage • αω tutorial • ⚘ community