git branch-commit-next

Show a branch’s next commit hash (or hashes)

Git alias:

branch-commit-next = "!f() { \
    branch="${1:-$(git current-branch)}"; \
    count="${2:-1}"; \
    git log --reverse --pretty=%H "$branch" | \
    grep -A "$count" $(git rev-parse HEAD) | \
    tail +2; \
}; f"

Syntax:

git branch-commit-next [branch name [commit count]]

Options:

Example: show the current branch’s next commit hash:

git branch-commit-next

Example: show the “foo” branch’s next commit hash:

git branch-commit-next next

Example: show the “foo” branch’s next 3 commit hashes:

git branch-commit-next foo 3

Compare: