Essential Git Commands
git clone
Creates a local copy of a remote repository.
git add
Stages changes for commit.
git commit
Records staged changes into repository history.
git push
Uploads commits to a remote repository.
git status
Shows file states and staging information.
git log
Displays commit history.