Reputation: 1015
I want to show every TODO of my source code after each commit. How can I do that using .git/hooks ?
Upvotes: 1
Views: 63
Reputation: 94809
In post-commit hook:
grep -Fr TODO .
Upvotes: 2