“atau buat repositori baru di baris perintah” Kode Jawaban

Buat repositori baru di baris perintah

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

membuat repositori baru

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

membuat repositori baru

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

Buat repositori baru di baris perintah

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

atau buat repositori baru di baris perintah

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

Jawaban yang mirip dengan “atau buat repositori baru di baris perintah”

Pertanyaan yang mirip dengan “atau buat repositori baru di baris perintah”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya