From 2394b79904e50439f2a4e9ced736e780eb582cac Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 7 Sep 2025 09:46:42 +0100 Subject: [PATCH] Update commit messages --- zet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zet b/zet index 670ba50..c28ad6c 100755 --- a/zet +++ b/zet @@ -59,7 +59,7 @@ edit_zet() { if [[ -f "$file" ]]; then "$EDITOR" "$file" - commit_changes "$file" "Edited $file" + commit_changes "$file" "Edit $file" # TODO: Update $ZET_TMP if the title is changed. else @@ -121,7 +121,7 @@ new_zet() { "$EDITOR" "$filename" run_git_command add --intent-to-add "$filename" - commit_changes "$filename" "Added $filename" + commit_changes "$filename" "Add $filename" } run_git_command() {