- commit을 하기 위한 순서
1-1. 코드 작업
1-2. git add (수정한 폴더)
1-3. git commit(1가지 선택)
1-4. git push
1-5. 코드 업로드 완료!- git commit convention
2-1. commit convention을 사용하는 이유
2-2. commit convention을 적용하는 방법- Example
- Reference
git add backend/
-m 을 이용하여 내용 작성하기
git commit -m "Initial commit"
git commit 을 이용하여 commit message 작성하기
git commit
다음과 같은 화면이 출력된다.
github 기본 에디터가 vim이 아닐경우
[git] editor 변경, 확인하기
git push origin feature-#10
git에 업로드 하지 않아야 할 파일을 commit했을 때
(한번 파일이 commit된 순간 .gitignore에서 무시되지 않음)
해결방법
1. 먼저 gitignore하고 싶은 파일을 지우고 commit
2. .gitignore에 파일 등록
3. 다시 git commit
commit convention은
누구든지 빠르게 변경 내용을 확인
할 수 있게 해주어 협업에 도움을 준다.
Type : Subject
body
footer
기본 구조에 대해 알았다면 4가지 구성 항목들에 대해서 알아보자
Type: 어떤 종류의 수정이 이루어졌는지 알려준다.
Subject: 제목
Body: 본문
Footer: 꼬리말
Feat: Add searchBoard API in board.resolver
Add searchBoard API
Resolves: #123
See also: #456, #789