Ejemplo 1: Cómo subir archivos a un repositorio en github usando gitbash
git init
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master or git push -f origin master
Ejemplo 2: enviar código a la línea de comandos de github
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master
Ejemplo 3: cómo cargar en github con comando
git remote add origin https://github.com/yourusername/your-repo-name.git
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)