Git에 commit Template 추가 (set up Git Commit Template)

Let's learn how to add a Git commit template.
Git commit template를 추가하는 법을 알아보겠습니다.


Run the folder associated with the Git repository in vscode
Git repository와 연결된 폴더를 vscode로 실행 하면 

▼아래와 빨간 박스같이 message 창이 비워져 있습니다.
▼The message window is empty as shown in the red box below.




It is not efficient to insert a Git commit message every time.
So for the unity of the message, To reduce the hassle
I will set up the template message to be automatically called up whenever Git commit.

매번 Git commit message를 넣기에는 효율적이지 않습니다.
그래서 message의 통일성과 번거로움을 줄이기 위해
Git commit때 마다 template message를 자동으로 불러오도록 설정 해보겠습니다.


First, create a ".gitmessage" and write down what you want to use as a template.
우선 ".gitmessage"를 만들고 template으로 사용할 내용을 적습니다.


(Note that [Feat] is managed by the criteria below.)

(참고로[Feat]은 아래의 기준으로 관리하고 있습니다.)

  • feat: (new feature for the user, not a new feature for build script)
  • fix: (bug fix for the user, not a fix to a build script)
  • docs: (changes to the documentation)
  • style: (formatting, missing semi colons, etc; no production code change)
  • refactor: (refactoring production code, eg. renaming a variable)
  • test: (adding missing tests, refactoring tests; no production code change)
  • chore: (updating grunt tasks etc; no production code change)


And then, run "Git Bash" in the directory where the .gitmessage is located.
그리고 .gitmessage가 있는 디렉토리에서 "Git Bash"를 실행시켜줍니다.


Execute the template setup command.

template 설정 명령어를 실행해 줍니다. 

$ cp ./.gitmessage  ~/.gitmessage

$ git config --global commit.template ~/.gitmessage



Now turn off vscode, and execute again
vscode를 종료 한후, 재 실행하면

▼The Git commit template is set as shown below.
▼아래와 같이 Git commit template 이 설정됩니다.  

1 댓글