Comandos úteis para usar GIT e GITHUB.
- No CMD/PowerShell
mkdir nome_projeto
cd nome_projetogit initgit add .Obs: Nesse caso (.) adiciona todos.
git commit -m "Primeiro commit."git branch -M maingit remote add origin URL_do_repositóriogit push -u origin maingit remote add origin URL_do_reposiório
git branch -M main
git push -u origin main
git clone URL_do_repositório_github