mercurial windows batch file for pulling changes to multiple repositories - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:52:04Z http://stackoverflow.com/feeds/question/908452 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/908452/mercurial-windows-batch-file-for-pulling-changes-to-multiple-repositories 1 mercurial windows batch file for pulling changes to multiple repositories bluebill 2009-05-26T00:16:24Z 2009-05-26T09:10:53Z <p>Hi all, I am a mercurial user on windows and I am trying to write a batch file to check for incoming changes to a number of repositories stored in a common folder (i.e. there could be 10 or so small mercurial repos under a main folder). I have the following batch file that successfully iterates through the multiple repositories and runs hg incoming. However I can't seem to get it to execute hg -pull -u when a repository is found that has remote changes. </p> <pre><code> FOR /D /r %%G in (".hg*") DO ( @echo Processing: %%G cd /d %%G\.. hg incoming IF NOT ERRORLEVEL 0 ( echo Pulling changes from the server hg pull -u ) cd.. ) </code></pre> <p>I am pretty sure the problem lies with the If statement. hg incoming doesn't seem to have a return value that can be interpreted by the ERRORLEVEL. Is this the right approach or should I be using python instead?</p> http://stackoverflow.com/questions/908452/mercurial-windows-batch-file-for-pulling-changes-to-multiple-repositories/909731#909731 1 Answer by Martin Geisler for mercurial windows batch file for pulling changes to multiple repositories Martin Geisler 2009-05-26T09:10:53Z 2009-05-26T09:10:53Z <p>The exit code for <code>hg incoming</code> and <code>hg outgoing</code> is <code>1</code> is there were no incoming/outgoing changesets and <code>0</code> otherwise. This is apparently not really documented anywhere, but it means that your test is backwards.</p> <p>Also, doing both <code>hg incoming</code> and <code>hg pull</code> does the job twice: you should simply use <code>hg pull</code>. The help for <code>hg incoming</code> says:</p> <blockquote> <p>For remote repository, using <code>--bundle</code> avoids downloading the changesets twice if the incoming is followed by a pull.</p> </blockquote> <p>So you're actually downloading all changesets twice, using twice the bandwidth.</p>