git post-push hook? [duplicate]

The list of hooks in man githooks is complete. There is no post-push hook. There are hooks which run in a repository after someone's pushed into it (i.e. for putting in the central repository), but nothing is triggered in the repository that you pushed from.

If there's a common task you need to do after pushing, you could make an alias which pushes then does that.