From b08ab26ea1cb1b24659a9e3c99bbac939dd94e53 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 27 Jul 2025 16:40:06 +0000 Subject: [PATCH] git: alias "pul" to "pull" --- hosts/common/programs/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/common/programs/git.nix b/hosts/common/programs/git.nix index 2d4b9e12e..ea9e35182 100644 --- a/hosts/common/programs/git.nix +++ b/hosts/common/programs/git.nix @@ -48,6 +48,7 @@ in alias.d = "difftool"; alias.dif = "diff"; # common typo alias.difsum = "diff --compact-summary"; #< show only the list of files which changed, not contents + alias.pul = "pull"; # common typo alias.rb = "rebase"; alias.reset-head = "reset --hard HEAD"; alias.st = "status";