Skip to content
Snippets Groups Projects
Commit 3804157f authored by jurgenhaas's avatar jurgenhaas
Browse files

Allow changelog to work in a given subdirectory

parent a5faf9cd
No related branches found
No related tags found
No related merge requests found
ahoyapi: v2
commands:
extract:
cmd: git log $(git describe --tags `git rev-list --tags --max-count=1`)..HEAD --oneline | cut -d' ' -f 2-999
usage: Extract changelog from Git for the current project since the last release.
cmd: |
if [ "x$1" <> "x" ]; then
cd $1
fi
git log $(git describe --tags `git rev-list --tags --max-count=1`)..HEAD --oneline | cut -d' ' -f 2-999
usage: Extract changelog from Git for the current project (or the given path as 1st argument) since the last release.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment