gitmoji 사용하여 이모지로 커밋 컨벤션 사용하기
[참고]
[Tips] Gitmoji를 커밋 컨벤션으로 사용하기
저희 소프트웨어 마에스트로 13기 몬스테라 팀은 Gitmoji를 commit 컨벤션으로 사용하기로 정했습니다.Commit 메세지를 보면 참 귀여운 것을 알 수 있죠.그런데, 저희는 왜 gitmoji를 사용하기로 했을까
velog.io
GitHub - carloscuesta/gitmoji: An emoji guide for your commit messages. 😜
An emoji guide for your commit messages. 😜 . Contribute to carloscuesta/gitmoji development by creating an account on GitHub.
github.com
GitHub - carloscuesta/gitmoji-cli: A gitmoji interactive command line tool for using emojis on commits. 💻
A gitmoji interactive command line tool for using emojis on commits. 💻 - GitHub - carloscuesta/gitmoji-cli: A gitmoji interactive command line tool for using emojis on commits. 💻
github.com
[GIT] ⚡️ Gitmoji 사용법 정리 (+ 깃모지 툴 소개)
Gitmoji 란? gitmoji란 git + emoji를 합쳐서 부르는 말로 emoji를 이용하여 commit message를 작성하는 tool이라고 보면 될 듯하다. 지금까지 그냥 글로만 커밋 메세지를 써왔겠지만, 메세지에 이모지(이모티
inpa.tistory.com
1. brew 로 설치하기
$ brew install gitmoji
2. gitmoji로 commit 하기
$ git add .
$ gitmoji -c
[추가]
Error: Seems that you're trying to commit with the cli but you have the hook created.
If you want to use the `gitmoji -c` command you have to remove the hook with the command `gitmoji -r`.
The hook must be used only when you want to commit with the instruction `git commit`
만일 위와 같은 에러메시지를 가졌다면, gitmoji -r 명령어를 사용해봅니다.
gitmoji -r은 이전에 초기화된 커밋 훅을 제거하는 명령어입니다.
$ gitmoji -r