Working with Git involves a core set of commands for tracking changes, committing, viewing history, and synchronizing with remotes. Knowing them is fundamental, everyday practical knowledge.
Setup and starting
git init # create a new repository in the current directory
git clone <url> # copy a remote repository locally
git config --global user.name "Name" # set your identity (once)
git config --global user.email
