Quoth Eric Schrock on Mon, Dec 01, 2008 at 11:11:23AM -0800: > While I'm bugging you mercurial folks, I thought I'd ask something that > has annoyed me ever since I started using mercurial. Is there any way > to have 'hg pull' (concisely) output the list of changed files across > all changesets pulled down? Right now the output is way too brief, and > it's not clear how to get that information after the fact. In a > repository as big as ON, it's important to see what files have changed - > even if they are not edited in your local workspace, there is the > possibility of conflict. Any pointers?
Were there any changes in the workspace? If so, you should be able to determine what changeset they're based on from the log, and then you can use "hg status --rev <before>:tip -mard" or some such. Or, it seems that Mercurial does not preserve timestamps, so you could use find. David