Created
November 21, 2013 21:44
-
-
Save kohsuke/7590246 to your computer and use it in GitHub Desktop.
Given a commit, find immediate children of that commit.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# given a commit, find immediate children of that commit. | |
for arg in "$@"; do | |
for commit in $(git rev-parse $arg^0); do | |
for child in $(git log --format='%H %P' --all | grep -F " $commit" | cut -f1 -d' '); do | |
git describe $child | |
done | |
done | |
done |
@kvudata You need to provide one or more arguments to the command:
$ git children-of bada55commitish
$ git children-of bada55commitish | xargs git show
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Doesn't seem to work for me, I just get a "fatal: No names found, cannot describe anything."
I'm running
git version 2.13.5 (Apple Git-94)