[Git] GitHub 저장소와 로컬 프로젝트 연결

…or create a new repository on the command line

echo "# Spring-Boot-Learn" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin <사용자 Git>
git push -u origin master

…or push an existing repository from the command line

git remote add origin <사용자 Git>
git push -u origin master

다른 글 읽어보기 ⬇️