“ou crie um novo repositório na linha de comando” Respostas de código

Crie um novo repositório na linha de comando

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

criando um novo repositório

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

Crie um novo repositório

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

Crie um novo repositório na linha de comando

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

ou crie um novo repositório na linha de comando

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

Respostas semelhantes a “ou crie um novo repositório na linha de comando”

Perguntas semelhantes a “ou crie um novo repositório na linha de comando”

Procure respostas de código populares por idioma

Procurar outros idiomas de código