fish: Add abbreviation for git branch --delete

This commit is contained in:
Donovan Glover 2023-06-20 12:04:28 -04:00
parent 255a819504
commit ac801ad5bf
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -31,6 +31,7 @@ let VARIABLES = import ../src/variables.nix; in {
gaa = "git add --all";
gap = "git add --patch";
gb = "git branch"; # List all branches
gbd = "git branch --delete";
gc = "git commit -m";
gca = "git commit --amend";
gcl = "git clone";