From 911222e679d34960b5cceec8639e63be4db26c37 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 29 Jul 2024 07:25:25 +0200 Subject: [PATCH] feat(shell): show all branches but limit commits in gg alias --- git/default.nix | 2 +- shell/shell_aliases.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/git/default.nix b/git/default.nix index 19966f3..97ed02a 100644 --- a/git/default.nix +++ b/git/default.nix @@ -67,7 +67,7 @@ }; aliases = { - graph = "log --graph --all --max-count 32"; + graph = "log --graph"; }; ignores = [ diff --git a/shell/shell_aliases.nix b/shell/shell_aliases.nix index 1f73735..4ee0f4e 100644 --- a/shell/shell_aliases.nix +++ b/shell/shell_aliases.nix @@ -3,7 +3,7 @@ { home.shellAliases = { g = "git"; - gg = "git graph"; + gg = "git graph --all --max-count 32"; gs = "git status"; gd = "git diff"; k = "kubectl";