“Новый репозиторий” Ответ

Создать новый репозиторий в командной строке

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

Создайте новый репозиторий в командной строке

echo "# sigpef_api" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Gnaore/sigpef_api.git
git push -u origin main
Grieving Grouse

Новый репозиторий

echo "# githubBasicAlgorithms" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Polsa96/githubBasicAlgorithms.git
git push -u origin main
Worried Walrus

или создать новый репозиторий в командной строке

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

Ответы похожие на “Новый репозиторий”

Вопросы похожие на “Новый репозиторий”

Больше похожих ответов на “Новый репозиторий” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования