changelogs: ignore merges
This commit is contained in:
parent
bc8fbf91eb
commit
717888e711
4
Makefile
4
Makefile
|
@ -21,8 +21,8 @@ changelogs:
|
|||
git --git-dir=src/.git tag | grep -v rc | sort -n | \
|
||||
(while read v; do \
|
||||
test -z "$$pv" && pv="`git --git-dir=src/.git rev-list HEAD | tail -n1`" ; \
|
||||
git --git-dir=src/.git shortlog $$pv..$$v > html/changelogs/short/$$v ; \
|
||||
git --git-dir=src/.git log $$pv..$$v > html/changelogs/$$v ; \
|
||||
git --git-dir=src/.git shortlog --no-merges $$pv..$$v > html/changelogs/short/$$v ; \
|
||||
git --git-dir=src/.git log --no-merges $$pv..$$v > html/changelogs/$$v ; \
|
||||
pv=$$v; done)
|
||||
|
||||
manpages:
|
||||
|
|
Loading…
Reference in New Issue