From 09bb4a172d08dab97e12fc720646eda3f0c30c29 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Fri, 20 Feb 2026 10:39:52 -0500 Subject: [PATCH] feat(zsh): add interactive git rebase alias --- home/dot_zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/home/dot_zshrc b/home/dot_zshrc index fa6bd56..fa88f28 100644 --- a/home/dot_zshrc +++ b/home/dot_zshrc @@ -50,6 +50,7 @@ alias ocr="${OPENCODE} --agent review --prompt 'Code review staged changes.'" alias or="${OPENCODE} --continue" # Git +gr() { git rebase -i HEAD~$1; } alias c='git commit -m' alias a='git add' alias ga='git add -A'