From afbda3cc23282b6c37849048d33f9c9c12ef8fb8 Mon Sep 17 00:00:00 2001 From: Sebastien Devaux Date: Fri, 4 Jan 2019 15:29:24 +0100 Subject: git hook script exmaple to prefill commit message from selected issue --- misc/git_hooks/prepare-commit-msg | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 misc/git_hooks/prepare-commit-msg (limited to 'misc') diff --git a/misc/git_hooks/prepare-commit-msg b/misc/git_hooks/prepare-commit-msg new file mode 100755 index 00000000..e1d38c3c --- /dev/null +++ b/misc/git_hooks/prepare-commit-msg @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Insert selected git-bug issue identifier in the comment. +# if no selected issue, print in comments the list of open issues. +# +cmtChar=`git config --get core.commentchar` +hashChar="#" +if [ "$cmtChar" = "" ] +then + cmtChar="#" +fi +if [ "$cmtChar" = "#" ] +then + hashChar=":" +fi + +ISSUE=`git bug show --fields shortId` +if [ "$ISSUE" = "" ] +then + echo "$cmtChar !!!!! insert $hashChar in your comment, pick one in list below." >> "$1" + git bug ls status:open |sed 's/ open\t/ /'| sed "s/^/$cmtChar/" >> "$1" +else + sed -i "1i$hashChar$ISSUE " "$1" +fi -- cgit From 43d0fe5caec529baa348b44f6e1cba49e87754a7 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 7 Jan 2019 23:08:48 +0100 Subject: commands: show: change for a single valued --field flag --- misc/bash_completion/git-bug | 3 +++ misc/git_hooks/prepare-commit-msg | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'misc') diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index c5e8ddf3..d6c28214 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -644,6 +644,9 @@ _git-bug_show() flags_with_completion=() flags_completion=() + flags+=("--field=") + two_word_flags+=("-f") + local_nonpersistent_flags+=("--field=") must_have_one_flag=() must_have_one_noun=() diff --git a/misc/git_hooks/prepare-commit-msg b/misc/git_hooks/prepare-commit-msg index e1d38c3c..6066d40e 100755 --- a/misc/git_hooks/prepare-commit-msg +++ b/misc/git_hooks/prepare-commit-msg @@ -14,7 +14,7 @@ then hashChar=":" fi -ISSUE=`git bug show --fields shortId` +ISSUE=`git bug show --field shortId` if [ "$ISSUE" = "" ] then echo "$cmtChar !!!!! insert $hashChar in your comment, pick one in list below." >> "$1" -- cgit