Skip to content

Instantly share code, notes, and snippets.

@dtelaroli
dtelaroli / git.sh
Last active August 21, 2022 09:13
Git essentials commands
# Configuration
git config user.name "My Name"
git config user.email "myemail@domain.com"
# Initialize a git repository
git init
# Add all files to be commited
git add .