#Criando um projeto do zero
echo "# UBBOAT_App" >> README.mdgit init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/seulogin/xxxxxx.git git push -u origin main
#Adicionado um projeto remoto na pasta local
git remote add origin https://github.com/login/xxxxx.git git branch -M main git push -u origin main
Removendo pasta local do servidor remoto
#lista os vinculados git remote -v #exemplo origin https://github.com/login/xxxx-app.git (fetch) origin https://github.com/login/xxxx-app.git (push) #comando para remover git remote rm origin