1. Repository Setup & Creation
These commands are used to start a new project or get a copy of an existing one.
git init: Create an empty Git repository or reinitialize an existing one.
# Initializes a new Git repository in the current folder.
git i...