How can we push code to multiple servers? We have many servers which needs to have the same copy of the code. It is difficult to push to individual server. I know mercurial has
In your .hg/hgrc file you should have a [paths] directive, which contains your default location. What about adding something like:
.hg/hgrc
[paths]
[paths] default = http://server1 server2 = http://server2
And then do a:
hg push default hg push server2