My favorites | Sign in
Project Home Downloads Wiki Issues Source
New issue   Search
for
  Advanced search   Search tips   Subscriptions

Issue 1272 attachment: gitlog2asciidoc.sh (191 bytes)

1
2
3
4
5
6
7
8
#!/bin/sh
# Convert git log to asciidoc ChangeLog file.
# (C) Deen Seth

git log --reverse --no-merges $1..$2 --format='* %s%n+%n%b' > gitlog
python gitlog2asciidoc.py
rm gitlog
exit 0
Powered by Google Project Hosting