GitNotes.10-4.md
본 문서는 Git Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

Section 10.4: 편집기를 열지 않고 커밋하기

git commit 명령어 실행 시, git 은 편집기 (vim 이나 emacs 와 같은) 를 실행하게 된다.

-m 옵션을 이용하면 커밋 메시지를 명령어 줄에 직접 기술할 수 있다:

git commit -m "Commit message here"

커밋 메시지는 여러 줄에 걸쳐서 입력도 가능하다:

git commit -m "Commit 'subject line' message here More detailed description follows here (after a blank line)."

또 다른 방법으로, -m 옵션을 여러번 반복해서 사용할 수도 있다:

git commit -m "Commit summary" -m "More detailed description follows here"

커밋 메시지 작성하기 (How to Write a Git Commit Message) 를 참고하라.

Udacity Git Commit Message Style Guide

[출처] https://books.goalkicker.com/GitBook/ (CC BY-SA)

반응형

+ Recent posts