본문 바로가기
노드js

리액트 깃허브 연결

by redbear0077 2023. 1. 10.
반응형

리액트 깃허브 연결

 

환경 

  -vs code

  -윈도우

1. 준비

  -리액트 프로젝트 생성

  -깃허브 repositorie 생서

  -vs code 터미널 생성한 프로젝트 이동

 

2. 적용

  -gitHub https주소 복사

  -vs code 터미널에 명령어 작성

    PS 내프로젝트 경로> git remote add origin (gitHub https주소)

   예 ) PS C:React Project Tutorrial/proj> git remote add oriigin https://github.com/test/test-test-Tutorial.git 

  -push

    PS 내프로젝트 경로> git push --set-upstream origin master

    예 ) PS C:React Project Tutorrial/proj> git push --set-upstream origin master

 

저용후 vs code를 이용하여 깃에 수정이 가능하다.

반응형