Update git config
This commit is contained in:
parent
afed0d7701
commit
bb80b9942b
1 changed files with 19 additions and 3 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue