add git abbreviation for deleting branches

This commit is contained in:
Noah Masur 2024-09-27 14:28:13 -04:00
parent 7e3ab279af
commit e91d6665fb
No known key found for this signature in database

View File

@ -113,7 +113,11 @@ in
gpd = "git push origin -d"; gpd = "git push origin -d";
gbd = "git branch -d"; gbd = "git branch -d";
gbD = "git branch -D"; gbD = "git branch -D";
gdd = "git-delete-both"; gdd = {
position = "anywhere";
setCursor = true;
expansion = "BRANCH=% git push origin -d $BRANCH and git branch -d $BRANCH";
};
gr = "git reset"; gr = "git reset";
grh = "git reset --hard"; grh = "git reset --hard";
gm = "git merge"; gm = "git merge";