4 lines
197 B
Bash
Executable file
4 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
|