리액트 앱 GIT 연동하기
로컬에서 원하는 위치에 리액트 앱 만들기
리액트 앱이 위치한 곳에서
git init
깃허브에서 레파지토리 신규 생성, 이름은 리액트 앱 이름과 동일하게 (README 파일 생성 X, public)
다시 터미널로 돌아와서
git remote add origin 깃레파지토리 주소
git add .
git commit -m "메세지 내용"
git push
해주면 생성한 레파지토리에 리액트 앱이 올라감
git push는
기본적으로 원격 저장소명과 브랜치명을 인자를 받음
git push <저장소명> <브랜치명>
예를 들어 현재 book이라는 브랜치에 있는데,
변경사항을 origin 원격 저장소에 올리기 위해서는
git push origin book 명령어를 입력해줘야 함.
git remote
라는 명령어로 원격 저장소명을 알수도 있다. git push
The current branch main has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin main
To have this happen automatically for branches without a tracking
upstream, see 'push.autoSetupRemote' in 'git help config'.
git config --u push.default current
커밋내역 : 9e5db49