From 2eeab4c72b0383d4611a17bbb925a1f2c412082d Mon Sep 17 00:00:00 2001 From: Barbz Date: Sun, 8 Mar 2020 18:21:18 +0100 Subject: [PATCH] fix(apps): Script for default git commit template returns output (#2642) - Before that, it didn't return anything and could confuse people --- apps/git_tools/setup_git_commit_template.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/git_tools/setup_git_commit_template.sh b/apps/git_tools/setup_git_commit_template.sh index 7b52062d1..ac9eb2536 100644 --- a/apps/git_tools/setup_git_commit_template.sh +++ b/apps/git_tools/setup_git_commit_template.sh @@ -2,3 +2,4 @@ ## Set a local git commit template git config --local commit.template ".git_commit_template.txt" ; +echo "--- Successfully set the default commit template for this repository only. Verify with: git config -e"