“nuevo repositorio” 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

crear un nuevo repositorio en la línea de comandos

echo "# sigpef_api" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Gnaore/sigpef_api.git
git push -u origin main
Grieving Grouse

nuevo repositorio

echo "# githubBasicAlgorithms" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Polsa96/githubBasicAlgorithms.git
git push -u origin main
Worried Walrus

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 “nuevo repositorio”

Preguntas similares a “nuevo repositorio”

Más respuestas relacionadas con “nuevo repositorio” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código