Git Cheat Sheet
git clone <url>
Clones the remote repository to your local machine
git add .
Adds all changed files to the next commit
git branch --all
Show all branches
git commit -m "message"
Commits Changes with the specified message
git checkout <branch>
Checks out the specified branch
git pull
Load changes from the remote repository
git push
Pushes commits to the remote repository
git reset --hard
Reverts all changes since the last commit