Commit 95220004 authored by RoToRx88's avatar RoToRx88 Committed by Marc Cornellà
Browse files

Better support for branch name

Enable to get issue from branch prefixed with it and delimited by '_'
parent 2f6d79b7
......@@ -65,7 +65,12 @@ function jira() {
# but `branch` is a special case that will parse the current git branch
if [[ "$action" == "branch" ]]; then
local issue_arg=$(git rev-parse --abbrev-ref HEAD)
local issue="${jira_prefix}${issue_arg}"
issue_arg=($(echo $issue_arg | cut -d'_' -f1))
if [[ $(echo ${issue_arg} | grep ${jira_prefix}) ]]; then
local issue="${issue_arg}"
else
local issue="${jira_prefix}${issue_arg}"
fi
else
local issue_arg=${(U)action}
local issue="${jira_prefix}${issue_arg}"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment