git remote add upstream (원본 레포 주소)

git fetch upstream

git checkout --track origin/BE-develop

git merge upstream/BE-develop

git push origin BE-develop

1. Commit 규칙

1) gitmoji

npm i -g gitmoji-cli

또는

VSCODE extension(추천)
git add .
gitmoji -c
choose a gitmoji: (이모지 고르기)
Enter the commit title: (커밋 제목입력)
Enter the commit message: (메시지입력)
git push origin feat#...

+) git cz라는 npm 패키지를 사용하면 커밋 컨벤션을 반 강제로 통일

https://www.npmjs.com/package/git-cz

https://gitmoji.dev/

Emoji Code 기능 Description
:sparkles: Feat 새 기능
♻️ :recycle: Refactor 코드 리팩토링

| ⏪ | :rewind: | Rewind | 변경 사항 되돌리기 | | 🔀 | :twisted_rightwards_arrows: | Merge | 브랜치 합병 | | 🗃 | :card_file_box: | DB | 데이터베이스 관련 수정 |

| 📦 | :package: | Add | 라이브러리/패키지 추가 | | ✏️ | :pencil2: | Etc | 간단한 코드 수정 |

Ex) ✨ Feat: 로그인 기능 구현