“lub utwórz nowe repozytorium w wierszu poleceń” Kod odpowiedzi

Utwórz nowe repozytorium w wierszu poleceń

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

Tworzenie nowego repozytorium

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

Utwórz nowe repozytorium

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

Utwórz nowe repozytorium w wierszu poleceń

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

lub utwórz nowe repozytorium w wierszu poleceń

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

Odpowiedzi podobne do “lub utwórz nowe repozytorium w wierszu poleceń”

Pytania podobne do “lub utwórz nowe repozytorium w wierszu poleceń”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu