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