From 7044ea8d316c61e2b1bad1d76ee697deb535a0de Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 20 Mar 2026 11:18:54 +0100 Subject: [PATCH] add alias in fish : "rebase" for "git rebase" --- home/fish.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/fish.nix b/home/fish.nix index 98beea0..c94a69a 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -83,6 +83,7 @@ stash = "git stash"; popstash = "git stash pop"; pull = "git pull"; + rebase = "git rebase"; m = "meson"; n = "ninja"; gdb_asan = "gdb -tui -ex='break __asan::ReportGenericError'";