1. git clone & git pull
2. git branch feature/jihong & git checkout feature/jihong
3. git add . & git commit -m "Add: 수정사항"
4. git push origin feature/jihong
5. pr template 작성
1. npx create-react-app-westaram
2. 필요한 라이브러리 세팅
3. git add.
4. git commit -m "Add : initial settings complete"
5. git remote add origin 주소
6. npm install (팀원이 시작할때)
서로 공통된 부분에서 작업을 하다가 팀원 한명이 먼저 머지를 하고 나머지는 머지를 뒤늦게 할 경우 발생 (같은 내용을 수정했을 경우)
1. git pull origin master
2. git log로 변경사항 확인
3. git checkout feature/jihong
4. git merge master
5. 파일이 많다면 좌측에 Merge Changes 를 사용해서 내용 수정
6. git add . / git commit -m"수정사항"
7. git push origin feature/jihong