본문 바로가기
카테고리 없음

[GIT] 커밋메세지 앞에 브런치명 붙이기

by 뎅규르르 2021. 10. 8.

1. 커밋메세지 앞에 브런치명을 붙이고 싶은 리포지토리로 이동

2. .git/hooks/commit-msg.sample 파일을 ㅊ 파일로 수정 

3. commit-msg 파일을 열고 밑에 내용을 복사 붙여넣기 한다

 

#!/bin/sh
Branch="$(git branch | grep "*" | awk '{print $2}')"

current_branch="$(echo $Branch | sed -e "s/^\(.*\)-[0-9]\+$/\1/g")"
mv $1 $1.tmpbycommit-msg
echo -n "[$current_branch] " > $1
cat $1.tmpbycommit-msg >> $1

 

반응형

댓글