feat(shell): show all branches but limit commits in gg alias
parent
5081f01fc2
commit
911222e679
|
@ -67,7 +67,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
aliases = {
|
aliases = {
|
||||||
graph = "log --graph --all --max-count 32";
|
graph = "log --graph";
|
||||||
};
|
};
|
||||||
|
|
||||||
ignores = [
|
ignores = [
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
home.shellAliases = {
|
home.shellAliases = {
|
||||||
g = "git";
|
g = "git";
|
||||||
gg = "git graph";
|
gg = "git graph --all --max-count 32";
|
||||||
gs = "git status";
|
gs = "git status";
|
||||||
gd = "git diff";
|
gd = "git diff";
|
||||||
k = "kubectl";
|
k = "kubectl";
|
||||||
|
|
Loading…
Reference in New Issue