To list all the commits, starting from the current one, and then its child, and so on -
we use a standard git log, but going the other way, you could use something like
git log --reverse --ancestry-path <commit-id>^..master
where commit-id is of the first commit that you want to show.