From 4c16895c29dac9bd75da303115922e2ba467d61a Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Mon, 29 Dec 2025 17:50:10 -0800 Subject: [PATCH] feat: add 'rm' as alias for 'dep remove' (bd-oehv) --- cmd/bd/dep.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/bd/dep.go b/cmd/bd/dep.go index 2e2bcb6d..3fb1bd1b 100644 --- a/cmd/bd/dep.go +++ b/cmd/bd/dep.go @@ -222,9 +222,10 @@ Examples: } var depRemoveCmd = &cobra.Command{ - Use: "remove [issue-id] [depends-on-id]", - Short: "Remove a dependency", - Args: cobra.ExactArgs(2), + Use: "remove [issue-id] [depends-on-id]", + Aliases: []string{"rm"}, + Short: "Remove a dependency", + Args: cobra.ExactArgs(2), Run: func(cmd *cobra.Command, args []string) { CheckReadonly("dep remove") ctx := rootCtx