Top "Hook" questions

A hook refers to replacing or extending a system or application's default behavior with a custom behavior for a specific event.

How to configure Git post commit hook

How to trigger a build remotely from Jenkins? How to configure Git post commit hook? My requirement is whenever changes …

git jenkins hook commit
What is meant by the term "hook" in programming?

I recently heard the term "hook" while talking to some people about a program I was writing. I'm unsure exactly …

hook
Putting git hooks into repository

Is it considered to be a bad practice - to put .git/hooks into the projects repository (using symlinks, for …

git hook githooks
How do I make Subversion (SVN) send email on checkins?

I've always found checkin (commit) mails to be very useful for keeping track of what work other people are doing …

svn hook post-commit post-commit-hook
Applying a git post-commit hook to all current and future repos

I've written a Git post-commit hook and it works correctly. However, I want to add this hook to apply to …

git hook githooks
Is there any git hook for pull?

I need to perform some actions (prepare gettext *.mo message files) on my project everytime I run git pull. Is …

git hook gettext
Git pre-push hooks

I would like to run a unit-tests before every git push and if tests fails, cancel the push, but I …

git hook
Linux Kernel: System call hooking example

I'm trying to write some simple test code as a demonstration of hooking the system call table. "sys_call_table" …

c linux-kernel hook
Monitoring application calls to DLL

In short: I want to monitor selected calls from an application to a DLL. We have an old VB6 application …

dll monitoring hook monitor
C# How to find if an event is hooked up

I want to be able to find out if an event is hooked up or not. I've looked around, but …

c# hook event-handling