From dea320751828db83a0d0bbf712978adce39be6ec Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Mon, 29 Jan 2024 14:42:32 +0000 Subject: [PATCH] git aliases --- modules/home/programs/git/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home/programs/git/default.nix b/modules/home/programs/git/default.nix index 46eb67e..30069e6 100644 --- a/modules/home/programs/git/default.nix +++ b/modules/home/programs/git/default.nix @@ -7,5 +7,11 @@ color.ui = "auto"; pull.rebase = true; }; + aliases = { + a = "add ."; + c = "commit"; + d = "diff --cached"; + p = "push"; + }; }; }