“Добавить новый проект в GIT” Ответ

Добавить GitHub Repo

create a new repository on the command line
echo "# {Repo Name}" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git push -u origin main
                
push an existing repository from the command line
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git branch -M main
git push -u origin main
Dayanaohhnana

Добавить новый проект в GIT

git init
git add .
git commit -m “Push existing project to GitLab”
git remote add source https://gitlab.com/cameronmcnz/example-website.git
git push -u -f source master
Irfan

Ответы похожие на “Добавить новый проект в GIT”

Вопросы похожие на “Добавить новый проект в GIT”

Больше похожих ответов на “Добавить новый проект в GIT” по Shell/Bash

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

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