Update git config
This commit is contained in:
parent
e0be8e3040
commit
737b7a35f6
1 changed files with 16 additions and 1 deletions
|
|
@ -77,10 +77,25 @@ in {
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
|
column.ui = "auto";
|
||||||
|
commit.verbose = true;
|
||||||
core.autocrlf = "input";
|
core.autocrlf = "input";
|
||||||
|
fetch = {
|
||||||
|
prune = true;
|
||||||
|
pruneTags = true;
|
||||||
|
all = true;
|
||||||
|
};
|
||||||
|
help.autocorrect = "prompt";
|
||||||
init.defaultBranch = "development";
|
init.defaultBranch = "development";
|
||||||
pull.rebase = false;
|
pull.rebase = false;
|
||||||
push.autoSetupRemote = true;
|
push = {
|
||||||
|
autoSetupRemote = true;
|
||||||
|
default = "simple";
|
||||||
|
};
|
||||||
|
rebase = {
|
||||||
|
autoSquash = true;
|
||||||
|
autoStash = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
ignores = [
|
ignores = [
|
||||||
".direnv"
|
".direnv"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue