feat(shell): show all branches but limit commits in gg alias
parent
5081f01fc2
commit
911222e679
|
@ -67,7 +67,7 @@
|
|||
};
|
||||
|
||||
aliases = {
|
||||
graph = "log --graph --all --max-count 32";
|
||||
graph = "log --graph";
|
||||
};
|
||||
|
||||
ignores = [
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue