VS Code에서 Github에 소스코드를 저장해보자.
+
버튼을 눌러 pushgit remote add origin 원격저장소_경로
git push --set-upstream origin master
소스코드 수정 후 수정된 코드를 커밋시키고자 할 때,
1. 깃허브에 수정한 내용 반영
git push --set-upstream origin master
2. repository 새로고침하면 반영된 결과 확인 가능
echo "# Repository명" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/사용자명/Repository명.git
git push -u origin master
git remote add origin https://github.com/사용자명/Repository명.git
git branch -M master
git push -u origin master