我需要做一個commit-msg掛鉤來檢查提交消息是否包含「app.asana」的任何部分。我搜索了一些引用和文檔,我知道我需要使用commit-msg。我必須使用Perl或Bash來做到這一點。Git commit hook - 如何使用commit-msg掛鉤檢查消息中的字符串?
有沒有人有關於這個或某處的線索我可以看看更多的例子來學習如何做到這一點?
謝謝。
我需要做一個commit-msg掛鉤來檢查提交消息是否包含「app.asana」的任何部分。我搜索了一些引用和文檔,我知道我需要使用commit-msg。我必須使用Perl或Bash來做到這一點。Git commit hook - 如何使用commit-msg掛鉤檢查消息中的字符串?
有沒有人有關於這個或某處的線索我可以看看更多的例子來學習如何做到這一點?
謝謝。
我找到了我的問題的答案。如果它可以幫助別人......
我剛剛創建了一個commit-msg
文件中包含.git/hooks
#!/bin/sh
test -n "$(grep 'app.asana.com/' ${1})" || {
echo >&2 "ERROR: Commit message is missing Asana's task link.\n\nPlease append the Asana's task link relative to this commit into the commit message."
exit 1
}
每個用戶都需要有內部.git/hooks
一個commit-msg
文件。然後,作爲一個解決方案,我添加commit-msg
到項目文件夾(這樣我就可以拉這個)與另一個文件名爲commit-msg-hook.sh
包含:
#!/bin/sh
cp commit-msg .git/hooks/commit-msg
chmod +x .git/hooks/commit-msg
echo "\nThe commit-msg hook was added to git hooks"
我歡迎任何意見,以改善我做了什麼。謝謝。
[This](https://www.kernel.org/pub/software/scm/git/docs/githooks.html)可能會有所幫助。 – devnull
我已經到過這個頁面,但是謝謝。經過一些更多的研究之後,我做到了......實際上很簡單。 – lol