From 48abea49cbfd11fac635200413371a854a90c14a Mon Sep 17 00:00:00 2001 From: John Backes Date: Mon, 17 Apr 2023 17:39:56 -0700 Subject: [PATCH] Add script to invoke happycommit program This commit adds a Bash script called git-commit-gpt to invoke the happycommit program. The script takes in any arguments passed to it and passes them along to the happycommit program. The purpose of this script is to simplify the process of invoking the happycommit program, which can be a bit confusing for some users. By using the script, users can simply run "git-commit-gpt" instead of having to remember the exact command to invoke the happycommit program. No automated testing was added, however this commit was written using `git commit-gpt` so SOMETHING worked right :-) Note: The script was added to the staged workspace as an executable file with permissions set to 100644. The script is turned into an executable by a different script that installs it. --- git-commit-gpt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 git-commit-gpt diff --git a/git-commit-gpt b/git-commit-gpt new file mode 100644 index 0000000..f33dc55 --- /dev/null +++ b/git-commit-gpt @@ -0,0 +1,3 @@ +#!/bin/bash +# Invoke the happycommit program +happycommit "$@" \ No newline at end of file