Getting a list of all children of a given commit

Posted by intuited on Stack Overflow See other posts from Stack Overflow or by intuited
Published on 2010-04-10T15:52:21Z Indexed on 2010/04/10 16:53 UTC
Read the original article Hit count: 145

Filed under:

I'd like to run git filter-branch on all children of a given commit. This doesn't seem to be an easy task, since there doesn't appear to be a way to tell git rev-list to only return children of a particular commit. Using the .. syntax won't work because it will also include the parent commits of any merge within that range. Am I missing something here?

© Stack Overflow or respective owner

Related posts about git