“Neues Repo erstellen” Code-Antworten

Richten Sie das Git -Repository ein

# 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

Neues Repo erstellen

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 erstellen Sie ein neues Repository

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

Neues Repo erstellen

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

Neues Repo erstellen

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

Ähnliche Antworten wie “Neues Repo erstellen”

Fragen ähnlich wie “Neues Repo erstellen”

Weitere verwandte Antworten zu “Neues Repo erstellen” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen