git config --global user.name "Seu Nome"
git config --global user.email "[email protected]"
git config --list --global
git init
git remote add origin <URL>
git clone <URL>
git remote -v
git status
git add <arquivo>
git add .
git commit -m "Mensagem do commit"
git push origin <branch>
git push -u origin <branch>
git pull origin <branch>
git branch
git switch <branch>
git switch -c <nova-branch>
git merge <branch-origem>
git revert <hash-do-commit>