From 9c13e2fe41242453ff7d5fe119ffd7ed0c4d4a75 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 11 Jul 2023 08:02:34 -0400 Subject: [PATCH] fish(abbreviations): Add git cherry-pick --- modules/fish.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/fish.nix b/modules/fish.nix index 94f84bb0..91fd629e 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -44,6 +44,7 @@ gcl = "git clone"; gco = "git checkout"; gcot = "git checkout --theirs"; + gcp = "git cherry-pick"; gd = "git diff"; # Show all file changes not staged yet gds = "git diff --staged"; # Show changes staged but not committed gi = "git init";