Quoth Roland Mainz on Tue, Feb 10, 2009 at 04:54:04AM +0100: > Is there a way to get a webrev for local (e.g. uncommited changes) in a > hg tree ?
What I do is - Set $rev to the part of "hg id" before the +. (E.g., the "777edecc81ff" in "777edecc81ff+ tip".) - Run "hg st -mard -n | HG_PARENT=$rev webrev -". (Note that to do this for changesets besides the tip, you have to give --rev=$rev to hg st.) I use an older version of webrev, though, so it's possible that this doesn't work with the current version. David