“Crie novo repo” Respostas de código

Configurar o repositório Git

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master
Caleb McNevin

Crie novo repo

echo "# DesktopApp" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/cmps277-dbproject/DesktopApp.git
git push -u origin main
Stupid Serval

Git Crie um novo repositório

echo "# content" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/sandy1310/content.git
git push -u origin main
Successful Skipper

Crie novo repo

echo "# relaxer-app" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/DragoPvP/relaxer-app.git
git push -u origin main
DragoPvP

Crie novo repo

echo "# portfolio" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/DriiisDev/portfolio.git
git push -u origin main
driiisdev

Respostas semelhantes a “Crie novo repo”

Perguntas semelhantes a “Crie novo repo”

Mais respostas relacionadas para “Crie novo repo” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código