Update git config

This commit is contained in:
Tim Schubert 2024-02-17 23:28:28 +01:00
parent afed0d7701
commit bb80b9942b
Signed by: dadada
SSH key fingerprint: SHA256:bFAjFH3hR8zRBaJjzQDjc3o4jqoq5EZ87l+KXEjxIz0

View file

@ -56,21 +56,37 @@ in
colorMoved = "default"; colorMoved = "default";
}; };
interactive.diffFilter = "delta --color-only"; interactive.diffFilter = "delta --color-only";
merge.conflictstyle = "diff3"; merge = {
conflictstyle = "zdiff3";
keepbackup = false;
tool = "meld";
};
status = { status = {
short = true; short = true;
branch = true; branch = true;
showUntrackedFiled = "all"; showUntrackedFiled = "all";
}; };
log.date = "iso8601-local"; log.date = "iso8601-local";
fetch.prune = true;
pull = { pull = {
prune = true; prune = true;
ff = "only"; ff = "only";
rebase = "interactive"; rebase = "interactive";
}; };
push.default = "upstream"; push = {
rebase.abbreviateCommands = true; default = "current";
autoSetupRemote = true;
};
rebase = {
abbreviateCommands = true;
# Automatically force-update any branches that point to commits that are being rebased.
updateRefs = true;
};
rerere.enabled = true; rerere.enabled = true;
transfer.fsckobjects = true;
fetch.fsckobjects = true;
receive.fsckObjects = true;
branch.sort = "-committerdate";
}; };
}; };