merge-base: use the new lookup_commit_reference() helper function
This allows you to use tags for merge bases.
This commit is contained in:
parent
961784ee42
commit
9b632be30c
@ -62,8 +62,8 @@ int main(int argc, char **argv)
|
||||
get_sha1(argv[2], rev2key)) {
|
||||
usage("merge-base <commit-id> <commit-id>");
|
||||
}
|
||||
rev1 = lookup_commit(rev1key);
|
||||
rev2 = lookup_commit(rev2key);
|
||||
rev1 = lookup_commit_reference(rev1key);
|
||||
rev2 = lookup_commit_reference(rev2key);
|
||||
ret = common_ancestor(rev1, rev2);
|
||||
if (!ret)
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user