“Cómo cargar código a GitHub” Código de respuesta

git empuje el proyecto actual a maestro

git init
git add .
git commit -m 'First commit'
git remote add origin <remote repository URL>
git push origin master
Stockholm

git empuje el repositorio existente

cd existing_folder
git init
git remote add origin https://gitlab.com/abc.git
git add .
git commit -m "Initial commit"
git push -u origin master
Batman

Cómo cargar código a GitHub

git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/your_username/repo_name.git
git push -u origin master
Yucky Yak

Cómo cargar el proyecto existente a GitHub

git remote add origin remote repository URL
git remote -v
git push -f origin master
Mushy Magpie

Respuestas similares a “Cómo cargar código a GitHub”

Preguntas similares a “Cómo cargar código a GitHub”

Más respuestas relacionadas con “Cómo cargar código a GitHub” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código