What is the correct way of running hg update in an incoming hook?

Is it:

[hooks]
incoming.foo = hg update

Or this

Or is there a more elegant way of doing this?

有帮助吗?

解决方案

The FAQ makes this suggestion:

[hooks]
changegroup = hg update

This goes in .hg/hgrc on the remote repository

So, indeed, this is the simple and correct way of doing it. Your example used incoming, but that hook runs once for every single changeset. The changegroup hook is done once after all changes have been pulled in, so I think it may suit your needs better.

If you end up needing more control, you can create an in-process hook script to fulfill those needs. The Wiki has some good examples.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top