git checkout -b [브랜치 이름]
git branch
git add [업로드할 파일]
git status
git commit -m "[커밋메시지]"
gitmoji -c
Choose a gitmoji :sparkles
: (example)처럼 해당 이모지를 고른다Enter the commit title
: 커밋 타이틀 작성한다Enter the commit message
: 커밋 메시지 작성한다git push origin [현재 브랜치 이름]
예) git push origin feature/#36-clientHttps
compare & pull request
누른다create pull request
누른다Merge pull request
누른 후, Confirm merge
까지 누른다Done
으로 변경한뒤, Linked issues에서 내 issue 카드를 찾아서 클릭해준 후, 일단 완료한 브랜치는 삭제한다git pull upstream dev
FE 예시: [Client] / #11 / edit: login
많은 도움이 됬습니다. 좋은 포스트 네요!