dotfiles/.local/bin/git-child

5 lines
197 B
Bash
Executable File

#!/bin/sh
# Find a commit that follows the given one
# Second argument can be used to specify the search range - default HEAD
git log --reverse --ancestry-path --pretty=%H $1..${2:-HEAD} | head -1