1). commit的template
git config --global commit.template [檔案名]
ex: git config --global commit.template ~/.git_template
※應用:
1). script: 將template寫在一隻檔案,並設定git config
#!/bin/sh
### function define ###
git_template()
{
cat << EOF > ~/.git_template
[Topic]:
[Release Note]:
[Involve]:
[Comments]:
EOF
}
### entry point ###
git_template
git config --global commit.template ~/.git_template
沒有留言:
張貼留言