I have a central master repository and several working copies.
The working copies pull from the master and I need to do some work with the master at this moment. So, I would like to have a hook, that gets triggered whenever another repository pulls or tries to pull (=nothing new available) from a repository.
I tried preoutgoing
, but this is only triggered, if there are some outgoing changesets available.
How could I solve this problem on the master repository side?