Compare commits

...

2 commits

Author SHA1 Message Date
fleaz
95062daba7 git: fix typo 2025-03-05 15:37:34 +01:00
fleaz
de79669ca6 modules/git: Better global config
https://blog.gitbutler.com/how-git-core-devs-configure-git/
2025-03-04 17:16:32 +01:00

View file

@ -1,4 +1,5 @@
{pkgs, ...}:{
{ pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitSVN;
@ -17,6 +18,27 @@
signByDefault = true;
};
extraConfig = {
"branch" = {
sort = "-committerdate";
};
"column" = {
ui = "auto";
};
"commit" = {
verbose = "true";
};
"diff" = {
algorithm = "histogram";
colorMoved = "plain";
mnemonicPrefix = "true";
renames = "true";
};
"tag" = {
sort = "version:refname";
};
"help" = {
autocorrect = "promt";
};
"core" = {
pager = "less -F -X";
};
@ -26,29 +48,42 @@
"pull" = {
rebase = "true";
};
"rebase" = {
autoSquash = "true";
autoStash = "true";
updateRefs = "true";
};
"fetch" = {
all = "true";
prune = "true";
pruneTags = "true";
};
"push" = {
autoSetupRemote = "true";
default = "simple";
followTags = "true";
};
};
aliases = {
# checkout-pull-request from GitHub
cpr = "!f() { git fetch origin refs/pull/$1/head && git checkout FETCH_HEAD; }; f";
};
includes = [{
condition = "gitdir:~/denic/";
contents = {
user = {
email = "breidenstein@denic.de";
name = "Felix Breidenstein";
includes = [
{
condition = "gitdir:~/denic/";
contents = {
user = {
email = "breidenstein@denic.de";
name = "Felix Breidenstein";
};
commit = {
gpgSign = false;
};
};
commit = {
gpgSign = false;
};
};
}
}
];
};
}