commit | 5907cda1b2e0bd7dc5c26466f60b9cbb60288cc5 | [log] [tgz] |
---|---|---|
author | Junio C Hamano <gitster@pobox.com> | Thu Aug 30 14:52:20 2012 -0700 |
committer | Junio C Hamano <gitster@pobox.com> | Fri Aug 31 11:45:33 2012 -0700 |
tree | 37738a51fd16874f47f6b978ef37aa1a2db00751 | |
parent | 94f0ced0d08c8f835992b82224231b9353490e0c [diff] |
merge-base: "--is-ancestor A B" In many scripted Porcelain commands, we find this idiom: if test "$(git rev-parse --verify A)" = "$(git merge-base A B)" then ... A is an ancestor of B ... fi But you do not have to compute exact merge-base only to see if A is an ancestor of B. Give them a more direct way to use the underlying machinery. Signed-off-by: Junio C Hamano <gitster@pobox.com>