added info to the changelog script
This commit is contained in:
parent
eb376eaa08
commit
7eb7fef94f
1 changed files with 8 additions and 0 deletions
|
|
@ -1,2 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Adapted from https://coderwall.com/p/5cv5lg/generate-your-changelogs-with-git-log
|
||||
#
|
||||
# Only commits tagged with #changelog will be added
|
||||
#
|
||||
# Usage: pass two tags in when running this script, and a changelog will be generated listing the differences between those two tags.
|
||||
# ex:
|
||||
# ./changelog.sh rev.2.0.1 rev.2.1.1
|
||||
git log ${1}...${2} --pretty=format:'<li> <a href="https://github.com/pyr0ball/pyr0piezo/commit/%H">view commit •</a> %s</li> ' --reverse | grep "#changelog"
|
||||
|
|
|
|||
Loading…
Reference in a new issue