boiler-plate
github 처음설치 github에서 새로운 레포지토리 생성(readme는 체크하지 말자! 추후 에러발생 가능) git init .gitignore 파일생성(파일내용: node_modules) git add. (저장소 올리기) // git rm --cached ~~ 저장소 올린것 다시 비우기 git status (저장소 상태보기) git commit -m "쓸말" (로컬 저장하기) git remote add origin master 변경된 내용 git에 올리기 1. git add . 2. git status에서 확인 3. git commit -m "메시지" 4. git push origin master 클로닝 하는 방법 git clone https://github.com/react-boilerplate/..
CODING/React.js
2020. 8. 25. 20:26