On Sonntag, 8. August 2010, Jon Seymour wrote: > +test_expect_success 'stash branch - no stashes on stack, stash-like > argument' ' + git stash clear && > + test_when_finished "git reset --hard HEAD" && > + git reset --hard && > + echo foo >> file && > + git tag stash-tag $(git stash create) && To catch failures in $(git stash create), you should rewrite lines like this one as: stashid=$(git stash create) && git tag stash-tag $stashid && -- 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