From 0afd702ecc6bb7908a045e000cbc0a8b1a104d61 Mon Sep 17 00:00:00 2001 From: Maddie H Date: Mon, 7 Oct 2024 15:20:52 +0100 Subject: [PATCH] feat: add git pushall alias --- homes/common/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/homes/common/git.nix b/homes/common/git.nix index 6e17c43..c1fb8c0 100644 --- a/homes/common/git.nix +++ b/homes/common/git.nix @@ -14,6 +14,7 @@ }; aliases = { + pushall = "!git remote | xargs -L1 git push --all"; graph = "log --graph --oneline --decorate"; unstage = "reset HEAD --"; co = "checkout";