“o crear un nuevo repositorio en la línea de comandos” Código de respuesta

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

Creación de un nuevo repositorio

echo "# comp305_cw1" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Eisen9/comp305_cw1.git
git push -u origin main
Wrong Wallaby

crear un nuevo repositorio

echo "# test-" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/hawzhen-eng/test-.git
git push -u origin main
Bored Bird

crear un nuevo repositorio en la línea de comandos

echo "# oop_labs" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Nichiporchik-Nastya/oop_labs.git
git push -u origin main
Smiling Shrike

o crear un nuevo repositorio en la línea de comandos

echo "# Your Repo name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin "your repo url"
git push -u origin main
MAKSTYLE119

Respuestas similares a “o crear un nuevo repositorio en la línea de comandos”

Preguntas similares a “o crear un nuevo repositorio en la línea de comandos”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código