Skip to content

UMC-CAU-6th/Web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git 설정하기

  1. 깃 초기화
git init
  1. 깃 remote 연결하기
git remote add origin {깃허브 레포지토리 주소}
  1. 깃 최신 정보 불러오기
git pull origin {브랜치 이름}
  1. 깃 새 브랜치 생성하기
git branch -M {브랜치 이름}
  1. 깃 브랜치 이동하기
git checkout {브랜치 이름}
  1. 깃에 파일 전체 추가하기
git add . 
  1. 깃에 특정 파일 추가하기
git add {파일이름}
  1. 깃 커밋하기
git commit -m "커밋 메시지"
  1. 깃 원격 저장소에 푸시하기
git push origin {브랜치 이름}

React 설정하기

  1. 프로젝트 생성하기
npx create-react-app {프로젝트 이름}
  1. 프로젝트 실행하기
npm run start

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •