mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 12:09:36 +08:00
feat(changelog): ignore merge commits
This commit is contained in:
parent
e32d4b1e19
commit
0e7d7b87f3
|
@ -114,6 +114,11 @@ function parse-commit {
|
|||
fi
|
||||
}
|
||||
|
||||
# Ignore commit if it is a merge commit
|
||||
if [[ $(command git show -s --format=%p $1 | wc -w) -gt 1 ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
# Parse commit with hash $1
|
||||
local hash="$1" subject body warning rhash
|
||||
subject="$(command git show -s --format=%s $hash)"
|
||||
|
|
Loading…
Reference in New Issue
Block a user