Am 19.07.2011 18:29, schrieb Dave Zarzycki: > -rev_args=$(git rev-parse --revs-only "$@") > - > case "$filter_subdir" in > "") > eval set -- "$(git rev-parse --sq --no-revs "$@")" This line in the hunk context changes what "$@" will produce. Therefore, the "$@" that you removed above will not produce the same thing... > @@ -286,8 +284,8 @@ case "$filter_subdir" in > ;; > esac > > -git rev-list --reverse --topo-order --default HEAD \ > - --parents --simplify-merges $rev_args "$@" > ../revs || > +git rev-parse --revs-only "$@" | git rev-list --stdin --reverse --topo-order \ > + --default HEAD --parents --simplify-merges "$@" > ../revs || ... that you insert here. How can the result ever have worked for you? Perhaps store the list of revs in a temporary file? -- Hannes -- 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