commit.templateでコミットメッセージにテンプレートを設定する – 【Git】

commit.templateでコミットメッセージにテンプレートを設定する – 【Git】

tortoiseGitでコミットする際や git commitコマンドを実行する際にコミットメッセージにあらかじめ決めたテンプレートを設定します。

テンプレートファイル名は任意でOKなので、「.commit.template」とします。

.commit.templateファイル

.commit.templateファイル内容です。

[branchname]
hogefuga

commit.template設定

Windows環境で試します。

C:\>git config --global commit.template C:\\Users\\takahashi-h5\\.commit.template
C:\>git config --global --list
user.name=takahashi-h5
user.email=takahashi-h5@confrage.com
commit.template=C:\\Users\\takahashi-h5\\.commit.template

git commit

VS Codeのターミナルでgit commitコマンドを実行します。.commit.templateファイルの内容が表示されています。

:wqで保存してgit push origin ブランチ名コマンドを実行します。

Commitコメントにテンプレートの内容が設定されるようになっています。

ドキュメント

Git - git-commit Documentation

コメント

株式会社CONFRAGE ITソリューション事業部をもっと見る

今すぐ購読し、続きを読んで、すべてのアーカイブにアクセスしましょう。

続きを読む

タイトルとURLをコピーしました