<aside> 💡 Utilize a ferramenta que tiver mais familiaridade.
Os comandos abaixo devem ser utilizados em qualquer terminal da sua máquina, após fazer a instalação do git bash.
Referência: https://rogerdudler.github.io/git-guide/index.pt_BR.html O que é o GitHub? https://www.youtube.com/watch?v=pBy1zgt0XPc&ab_channel=GitHub
</aside>
git config --global user.name "John Doe"
git config --global user.email "[email protected]"
git init
git status
git add .
git commit -m "Descrição do commit"
git remote add origin <https://github.com/dideconto/teste.git>
git push
git clone <https://github.com/dideconto/teste.git>