On Fri, 2 Mar 2007, Andy Parkins wrote: > # Commit with a parent > - for rev in $(git-rev-parse --not --all | git-rev-list --stdin $newrev ^$baserev) > + for rev in $(git-rev-list $newrev ^$baserev --not --all) Looks fine, and I don't think it's worth changing, but you can avoid the extra caret by just moving "$baserev" to after the "--not", ie writing the thing as git-rev-list $newrev --not $baserev --all instead if you want to. > - git-rev-parse --not --all | > - git-rev-list --stdin --pretty $newrev ^$baserev > + git log $newrev ^$baserev --not --all And that's true here too. Linus - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html