I was wondering if there is a generalized method for finding if a commit is a parent to another.
git branch --contains <hash>
Is almost what I want. It lists all branches that contain the commit, but I want to know if an arbitrary commit "contains" another commit.
My temporary hack is to create a branch at the commit and then check if it's contained in the list, but this seems sloppy.
git branch __temp_branch__ <hash1>
git branch --contains <hash2> # check if __temp_branch__ is in output
git branch -d __temp_branch__