“Crear repositorio en GitHub usando la línea de comandos” Código de respuesta

Cómo cargar un archivo 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
Archit

Sube un nuevo repositorio a Git

echo "# Can-I-Shop-2" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/username/projectname.git
git push -u origin master
                
Victorious Vendace

crear un nuevo repositorio en la línea de comandos

echo "# Codecademy.github.io" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/868-Anton/Codecademy.github.io.git
git push -u origin main
Unusual Unicorn

crear un nuevo repositorio en la línea de comandos

git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master
Cheerful Cheetah

Crea un nuevo repositorio en GitHub

echo "# visitor_management" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M Master
git remote add origin https://github.com/aymenit2008/visitor_management.git
git push -u origin Master
Different Duck

Crear repositorio en GitHub usando la línea de comandos

Github Basic
Glorious Giraffe

Respuestas similares a “Crear repositorio en GitHub usando la línea de comandos”

Preguntas similares a “Crear repositorio en GitHub usando la línea de comandos”

Más respuestas relacionadas con “Crear repositorio en GitHub usando la línea de comandos” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código