public
Description: A bunch of random scripts I've either written, downloaded or clipped from #git.
Homepage:
Clone URL: git://github.com/jwiegley/git-scripts.git
git-scripts / git-find-children
100755 12 lines (9 sloc) 0.16 kb
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
 
if [[ $# == 0 ]]; then
echo usage: git find-children REFS...
fi
 
for ref in "$@"; do
for sha1 in $(git rev-list "$@")
    do
done
done