“Agregar nuevo proyecto a Git” Código de respuesta

Agregar repositorio de Github

create a new repository on the command line
echo "# {Repo Name}" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git push -u origin main
                
push an existing repository from the command line
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git branch -M main
git push -u origin main
Dayanaohhnana

Agregar nuevo proyecto a Git

git init
git add .
git commit -m “Push existing project to GitLab”
git remote add source https://gitlab.com/cameronmcnz/example-website.git
git push -u -f source master
Irfan

Respuestas similares a “Agregar nuevo proyecto a Git”

Preguntas similares a “Agregar nuevo proyecto a Git”

Más respuestas relacionadas con “Agregar nuevo proyecto a Git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código