[UPDATE][GIT] Re-order configuration file
I want the core and the user settings on top, all but the alias sections and sections added by plug-ins to be in alphabetical order, then the aliases, followed by plug-in related settings (such as git-lfs).
This commit is contained in:
parent
81ee5d3f67
commit
9b71074511
|
@ -1,32 +1,25 @@
|
||||||
[core]
|
[core]
|
||||||
excludesfile = ~/.gitignore
|
excludesfile = ~/.gitignore
|
||||||
|
|
||||||
|
[user]
|
||||||
|
email = bruno.belanyi@epita.fr
|
||||||
|
name = Bruno BELANYI
|
||||||
|
|
||||||
|
[blame]
|
||||||
|
coloring = repeatedLines
|
||||||
|
markUnblamables = true
|
||||||
|
markIgnoredLines = true
|
||||||
|
|
||||||
|
[branch]
|
||||||
|
autosetubrebase = always
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
branch = auto
|
branch = auto
|
||||||
diff = auto
|
diff = auto
|
||||||
interactive = auto
|
interactive = auto
|
||||||
status = auto
|
status = auto
|
||||||
[commit]
|
|
||||||
verbose = true
|
|
||||||
[pull]
|
|
||||||
rebase = true
|
|
||||||
[branch]
|
|
||||||
autosetubrebase = always
|
|
||||||
[push]
|
|
||||||
default = simple
|
|
||||||
[rebase]
|
|
||||||
autoSquash = true
|
|
||||||
autoStash = true
|
|
||||||
[blame]
|
|
||||||
coloring = repeatedLines
|
|
||||||
markUnblamables = true
|
|
||||||
markIgnoredLines = true
|
|
||||||
[diff]
|
|
||||||
algorithm = patience
|
|
||||||
[pager]
|
|
||||||
diff = /usr/share/git/diff-highlight/diff-highlight | less
|
|
||||||
log = /usr/share/git/diff-highlight/diff-highlight | less
|
|
||||||
show = /usr/share/git/diff-highlight/diff-highlight | less
|
|
||||||
[color "diff"]
|
[color "diff"]
|
||||||
commit = yellow
|
commit = yellow
|
||||||
meta = yellow
|
meta = yellow
|
||||||
|
@ -34,15 +27,33 @@
|
||||||
old = red
|
old = red
|
||||||
new = green
|
new = green
|
||||||
whitespace = red reverse
|
whitespace = red reverse
|
||||||
|
|
||||||
[color "diff-highlight"]
|
[color "diff-highlight"]
|
||||||
oldNormal = red bold
|
oldNormal = red bold
|
||||||
oldHighlight = red bold 52
|
oldHighlight = red bold 52
|
||||||
newNormal = green bold
|
newNormal = green bold
|
||||||
newhighlight = green bold 22
|
newhighlight = green bold 22
|
||||||
|
|
||||||
[user]
|
[commit]
|
||||||
email = bruno.belanyi@epita.fr
|
verbose = true
|
||||||
name = Bruno BELANYI
|
|
||||||
|
[diff]
|
||||||
|
algorithm = patience
|
||||||
|
|
||||||
|
[pager]
|
||||||
|
diff = /usr/share/git/diff-highlight/diff-highlight | less
|
||||||
|
log = /usr/share/git/diff-highlight/diff-highlight | less
|
||||||
|
show = /usr/share/git/diff-highlight/diff-highlight | less
|
||||||
|
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
|
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
|
|
||||||
|
[rebase]
|
||||||
|
autoSquash = true
|
||||||
|
autoStash = true
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
||||||
|
|
Loading…
Reference in a new issue