[git] 레퍼지토리 연결

qwe8851·2023년 9월 5일
0

✏️ git

목록 보기
7/14

Quick setup — if you’ve done this kind of thing before

https://github.com/qwe8851/vue3.git



…or create a new repository on the command line

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



…or push an existing repository from the command line

git remote add origin https://github.com/qwe8851/vue3.git
git branch -M main
git push -u origin main
profile
FrontEnd Developer with React, TypeScript

0개의 댓글