fish(abbreviations): Add git checkout --theirs

This commit is contained in:
Donovan Glover 2023-07-11 08:02:02 -04:00
parent bad9f4cbf7
commit fb27622fb9
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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";