Creamos un nuevo repositorio en https://github.com. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a crear repositorio y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto.
Nos vamos a la carpeta del proyecto y ejecutamos estos comandos.
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/NOMBRE_USUARIO/NOMBRE_PROYECTO.git
git push -u origin master
ayuda porfavor
Usuario@DESKTOP-9J3GA7K MINGW64 ~/Documents/alumni programacion (main)
$ git branch -m main
Usuario@DESKTOP-9J3GA7K MINGW64 ~/Documents/alumni programacion (main)
$ git remote add origin https://github.com/karenchavezp/digitallers-2023.git
error: remote origin already exists.
Usuario@DESKTOP-9J3GA7K MINGW64 ~/Documents/alumni programacion (main)
$ git push -u origin main
fatal: repository 'https://github.com/karenchavezp/digitallers-2023/blob/f47e45157305050e8c3f26b3784e90df9a765c12/git/' not found
Usuario@DESKTOP-9J3GA7K MINGW64 ~/Documents/alumni programacion (main)
$ git push -f -u origin main
fatal: repository 'https://github.com/karenchavezp/digitallers-2023/blob/f47e45157305050e8c3f26b3784e90df9a765c12/git/' not found
Usuario@DESKTOP-9J3GA7K MINGW64 ~/Documents/alumni programacion (main)
$ git push origin master
error: src refspec master does not match any
error: failed to push some refs to 'https://github.com/karenchavezp/digitallers-2023/blob/f47e45157305050e8c3f26b3784e90df9a765c12/git'