Extended fixes_alias description

This commit is contained in:
Maciej Suminski 2016-10-07 16:52:52 +02:00
parent 26ee676278
commit 7a4f1685df
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
[alias]
# Alias to simplify marking commits as bug fixes
# After commiting a change, run 'git fixes 123456' to mark the commit as a fix to bug lp:123456
# When the script is enabled, you may commit a change and run 'git fixes 123456' to mark the commit as a fix to bug lp:123456
# Enable by executing in the source root directory:
# git config --add include.path $(pwd)/helpers/git/fixes_alias
fixes = "!f() { \
COMMIT_MSG=$(git log -1 --format=medium | tail -n +5 | sed -e 's/^ //'); \
git commit --amend -m \"${COMMIT_MSG}\n\nFixes: lp:$1\n* https://bugs.launchpad.net/kicad/+bug/$1\"; \