From 54aecce31261a4c171fbb96889c71c7c906399d2 Mon Sep 17 00:00:00 2001 From: Kyle June Date: Sun, 14 Jun 2026 04:15:56 -0400 Subject: [PATCH] chore: remove git:rebase task MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the git:rebase task in favor of a branch-from-main workflow: branch off main when ready to commit, stay on the branch until it squash-merges, then return to main — no long-lived dev branch to rebase. Co-Authored-By: Claude Opus 4.8 (1M context) --- deno.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deno.json b/deno.json index f58aa58..7384121 100644 --- a/deno.json +++ b/deno.json @@ -171,10 +171,6 @@ "description": "Checks the code for errors, formatting, and runs the linter.", "command": "deno check && deno lint && deno fmt --check" }, - "git:rebase": { - "description": "Gets your branch up to date with master after a squash merge.", - "command": "git fetch origin main && git rebase --onto origin/main HEAD" - }, "lgtm:start": { "description": "Starts the LGTM service.", "command": "docker compose up -d --wait lgtm"