본문 바로가기
기타

.git pre-commit 훅에서 커밋 메시지 가져오기

by Nhahan 2023. 7. 27.
#!/bin/bash

commit_message_file=".git/COMMIT_EDITMSG"
commit_message=$(cat "$commit_message_file")

 

이를 응용하면 커밋 메시지를 강제(?)로 꾸며줄 수도 있다.

 

 

댓글