[GitHub] git repository 생성 & git 사용방법
⚡️작업할 폴더 생성 mkdir 폴더이름 (git-practice) -- 폴더를 직접만들어도 상관없음 ls -al (경로확인) cd git-practice (폴더로 이동) npx create-react-app git-practice-react (리엑트설치명) cd git-practice-react(리엑트폴더이동) ** npx 설치하고 리엑트 폴더로 이동후 ls -al (git여부를 확인 ) ⚡️git 사이트에서 new repository 생성 git remote add origin 레파지토리 주소 git remote -v (연결된주소 확인) git branch -M (main 또는 Master) // 깃허브 디폴트 브랜치 설정 ⚡️vsCode를 실행 vsCode에서 최초 셋팅(내용수정) git add ...
2022.10.09