users/foo-dogsquared: add git alias

This commit is contained in:
Gabriel Arazas 2023-10-26 10:03:44 +08:00
parent 7f148d5322
commit 2540825f21
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -16,6 +16,7 @@
alias = {
unstage = "reset HEAD --";
quick-rebase = "rebase --interactive --autostash --committer-date-is-author-date";
quick-clone = "clone --depth=1 --recurse-submodules --shallow-submodules";
};
init.defaultBranch = "main";
@ -30,6 +31,13 @@
"https://git.sr.ht/".insteadOf = [ "sh:" "sourcehut:" ];
"https://git.savannah.nongnu.org/git/".insteadOf = [ "sv:" "savannah:" ];
};
status = {
showPatch = true;
showStash = true;
};
submodule.fetchJobs = 0;
};
};