I have written a changegroup hook that is invoked in my local repository when I pull changes from the remote server copy. In the hook implementation, I invoke hg update to pull in the changes. On running hg pull
command, the output shows as follows:
pulling from ssh://lava@lava.in/hgrepo
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
Verified file test1.cpp
(run 'hg update' to get a working copy)
Since I am already invoking hg update
in the hook, I want to suppress the last line that suggests user to run hg update
.