HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
❤️‍🔥
화랑팀
/
🌷
참고했던 자료 리스트
참고했던 자료 리스트
🌷

참고했던 자료 리스트

No
찾아봤던 기술
링크
작성자
날짜
같이 보면 좋을거 같은 자료 번호 index
예제
React 프로젝트 만드는 법
https://chanhuiseok.github.io/posts/react-2/
진연주
2022.06.02
ㅤ
1
git rebase 하는 방법
https://zlrlo.github.io/git-rebase/
정지영
2022.06.09
ㅤ
2
react:styled-reset
https://velog.io/@daymoon_/React-styled-reset
유승범
2022.06.09
ㅤ
3
material icon
https://fonts.google.com/icons
유용상
2022.06.09
ㅤ
4
git rebase 하는 방법
https://git.jiny.dev/text/merge/rebase
정지영
2022.06.09
1
5
git rebase 중 conflict 해결하기
https://yuniel.tistory.com/54
유용상
2022.06.09
1,4
6
react 폰트 사용하기
https://velog.io/@lifeisbeautiful/React-폰트입혀보기
유용상
2022.06.10
ㅤ
7
react route element에 hoc 적용하기
https://velog.io/@nemo/router-error-v6-hoc
진연주
2022.06.17
ㅤ

새로 알게된 점

1. rebase 코드

/* 1. 리베이스 전 준비 */ git checkout feat_FluxComponent // 작업 진행 git add . git commit -m "커밋 메세지"
/* 2. 원하는 브랜치로 리베이스 */
git fetch origin dev git rebase dev (그 전에 dev 브랜치 fetch 한번 해서 변경된 작업 내용 없는지 확인해줘야 함)
/* 3. 리베이스 후 머지, 정리 */ git checkout dev git merge feat_FluxComponent
// 더이상 feat_FluxComponent는 필요 없으니 삭제 git branch -d feat_FluxComponent
🌷
rebase를 하는 도중 conflict가 발생하면 rebase 중단, 개발자가 충돌난 부분 수정해서 commit 해주고 rebase —contiinue를 해줘야만 중단된 rebase 계속 진행 → 해당 rebase가 모두 완료되면 conflict나서 생성된 no-branch 없어지고 정상적으로 branch에 rebase 코드 추가