feat(shell): show all branches but limit commits in gg alias

main
mandlm 2024-07-29 07:25:25 +02:00
parent 5081f01fc2
commit 911222e679
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
};
aliases = {
graph = "log --graph --all --max-count 32";
graph = "log --graph";
};
ignores = [

View File

@ -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";