I wonder whether it is possibel to automatically append the JIRA issue ID to every commit message automatically?
All our branch names include the issue id with the issue type name.
Is there a way to automatically append it to a commit message when commiting?
We are using script runner, maybe there is a way to do it with it?
By the time the commit is created with the original commit message, it gets its hash. If you changed the commit message afterward (even programatically), that'd result in a new hash which could eventually break things.
So, I'd suggest you'd rather require committers to enter the issue key in the commit message (a'priori).
But this kind of thing get forgotten, it has to be done automatically.
Maybe via a commit pre hook? Any idea how to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What version control system are you using?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Now that I know the environment, I added a new answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the git prepare-commit-msg hook. It's a script that get executed before you write the commit message. I've written such a script. It works for branches named such as "feature/ABC-123-description" and will add "ABC-123" to the commit message. And the developer has all the liability to modify the commit message afterwards. You can set up such a hook at repository level or globally on a machine. That means you must set up the script on every developer machine though.
#!/bin/bash
# get current branch
branchName=`git rev-parse --abbrev-ref HEAD`
# search jira issue id in a pattern such a "feature/ABC-123-description"
jiraId=$(echo $branchName | sed -nr 's,[a-z]+/([A-Z]+-[0-9]+)-.+,\1,p')
# only prepare commit message if pattern matched and jiraId was found
if [[ ! -z $jiraId ]]; then
# $1 is the name of the file containing the commit message
sed -i.bak -e "1s/^/\n\n$jiraId\n/" $1
fi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you so much, Adrien!
Just a small improvement.
Since the project code may have numbers, I used `[A-Z0-9]` instead of `[A-Z]` to match the project code.
jiraId=$(echo $branchName | sed -nr 's,[a-z]+/([A-Z0-9]+-[0-9]+)-.+,\1,p')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm getting an error in source tree when using this pre-commit hook.
the file SED tries to open IS present and the comment is there.
git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks commit -q -F C:\Users\Ralph\AppData\Local\Temp\ppjj2kg3.xax
sed: no input files
on Windows10 , GIT2.30.2 Sourcetree 3.4.7
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Adrien! Aside from forgetting to switch from #!/bin/sh to #!/bin/bash I was able to get your hook going. I've also added a bit of a change to also extract the jira ticket title as well, which may be of interest to some people here as well.
I also adopted rubens21's suggestion as well.
#!/bin/bash
COMMIT_MSG_FILE=$1
COMMIT_SOURCE=$2
SHA1=$3
## Automatically append jira issue ticket to every commit
## Ref: https://community.atlassian.com/t5/Bitbucket-questions/automatically-append-JIRA-issue-ID-into-commit-message/qaq-p/605991
# get current branch
branchName=`git rev-parse --abbrev-ref HEAD`
# search jira issue id and title in a pattern such a "feature/ABC-123-description"
jiraId=$(echo $branchName| sed -nr 's,[a-z]+/([A-Z0-9]+-[0-9]+)-.+,\1,p')
jiraTitle=$(echo $branchName| sed -nr 's,[a-z]+/[A-Z0-9]+-[0-9]+-(.+),\1,p' | sed 's/-/ /g')
# only prepare commit message if pattern matched and jiraId was found
if [[ ! -z $jiraId ]]; then
# $1 is the name of the file containing the commit message
sed -i.bak -e "1s/^/\n\n\[$jiraId\] \: $jiraTitle\n/"$1
fi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I created a precommit hook that automatically prepends jira ticket id to your commits, if your branch has the ticket info. Works fine so far.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
updated to work on OSX and Linux and only add the Jira Ticket, not the Jira Title
Gist here: https://gist.github.com/phillpafford/02437d61a90a8d5f8cd520944a7b618c
#!/usr/bin/env bash
## Automatically append jira issue ticket to every commit
## Ref: https://community.atlassian.com/t5/Bitbucket-questions/automatically-append-JIRA-issue-ID-into-commit-message/qaq-p/605991
set -e
# get current branch
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
# search jira issue id in a pattern such a "feature/ABC-123-description"
JIRA_ISSUE=$(echo $BRANCH_NAME| sed -nr 's,[a-z]+/([A-Z0-9]+-[0-9]+)-.+,\1,p')
# only prepare commit message if pattern matched and JIRA_ISSUE was found
if [[ ! -z $JIRA_ISSUE ]]; then
# $1 is the name of the file containing the commit message
## OSX and Linux compatable
sed -i '' -e "1s/$/\n\n\[$JIRA_ISSUE\]/" $1
fi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Commit Policy is an add-on for Bitbucket that enforces this via a custom hook.
See the full documentation here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
does it enforce that the user to insert the issue ID in the commit message?
Or does it automatically append the issue ID into the commit?
The later is prefered.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It does the former.
(Like I said rewriting commit messages of published commits with Git is not recommended.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I finally used following script:
http://monksealsoftware.com/add-jira-issue-number-to-git-commit-message/
to solve my problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.