“Cómo agregar un proyecto existente a GitHub” Código de respuesta

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 agregar un proyecto existente a GitHub

# Go into your existing directory and run below commands
cd docker-spring-boot
echo "# docker-spring-boot" >> README.md
git init
git add -A
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/devopsmaster/docker-spring-boot.git
git push -u origin master
                

devops unicorn

Cómo empujar el proyecto existente a GitHub

git remote add origin 
      https://github.com/asd/FinraDeck.git (github adresi)
• git push -u origin master 
Obedient Ocelot

Git empuja el código existente al nuevo repositorio

git remote add origin <remote repository URL>
Bored Bison

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 agregar un proyecto existente a GitHub”

Preguntas similares a “Cómo agregar un proyecto existente a GitHub”

Más respuestas relacionadas con “Cómo agregar un proyecto existente a GitHub” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código