[UPDATE][GIT] Use tab-based indent in gitconfig
When you use `git config --global ...` to write to this file, it uses tabs to indent the configuration options. This makes the file more consistent with Git's way of writing the configuration.
This commit is contained in:
parent
b5eb803f9d
commit
83d3ee0624
|
@ -1,78 +1,78 @@
|
||||||
[user]
|
[user]
|
||||||
email = bruno.belanyi@epita.fr
|
email = bruno.belanyi@epita.fr
|
||||||
name = Bruno BELANYI
|
name = Bruno BELANYI
|
||||||
|
|
||||||
[blame]
|
[blame]
|
||||||
coloring = repeatedLines
|
coloring = repeatedLines
|
||||||
markUnblamables = true
|
markUnblamables = true
|
||||||
markIgnoredLines = true
|
markIgnoredLines = true
|
||||||
|
|
||||||
[branch]
|
[branch]
|
||||||
autosetubrebase = always
|
autosetubrebase = always
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
branch = auto
|
branch = auto
|
||||||
diff = auto
|
diff = auto
|
||||||
interactive = auto
|
interactive = auto
|
||||||
status = auto
|
status = auto
|
||||||
|
|
||||||
[color "diff"]
|
[color "diff"]
|
||||||
commit = yellow
|
commit = yellow
|
||||||
meta = yellow
|
meta = yellow
|
||||||
frag = cyan
|
frag = cyan
|
||||||
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
|
||||||
|
|
||||||
[commit]
|
[commit]
|
||||||
verbose = true
|
verbose = true
|
||||||
|
|
||||||
[diff]
|
[diff]
|
||||||
algorithm = patience
|
algorithm = patience
|
||||||
|
|
||||||
[merge]
|
[merge]
|
||||||
tool = fugitive
|
tool = fugitive
|
||||||
|
|
||||||
[mergetool "fugitive"]
|
[mergetool "fugitive"]
|
||||||
cmd = vim -f -c \"Gdiff!\" \"$MERGED\"
|
cmd = vim -f -c \"Gdiff!\" \"$MERGED\"
|
||||||
trustExitCode = true
|
trustExitCode = true
|
||||||
|
|
||||||
[pager]
|
[pager]
|
||||||
diff = /usr/share/git/diff-highlight/diff-highlight | less
|
diff = /usr/share/git/diff-highlight/diff-highlight | less
|
||||||
log = /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
|
show = /usr/share/git/diff-highlight/diff-highlight | less
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
rebase = true
|
rebase = true
|
||||||
|
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
|
|
||||||
[rebase]
|
[rebase]
|
||||||
autoSquash = true
|
autoSquash = true
|
||||||
autoStash = true
|
autoStash = true
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
||||||
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
|
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
|
||||||
trim = reflog expire --expire-unreachable=now --all
|
trim = reflog expire --expire-unreachable=now --all
|
||||||
chop = gc --prune=now
|
chop = gc --prune=now
|
||||||
optimize = repack -a -d -f --depth=250 --window=250
|
optimize = repack -a -d -f --depth=250 --window=250
|
||||||
pf = pull --ff-only
|
pf = pull --ff-only
|
||||||
m4 = mergetool -t vimdiff
|
m4 = mergetool -t vimdiff
|
||||||
assume = update-index --assume-unchanged
|
assume = update-index --assume-unchanged
|
||||||
unassume = update-index --no-assume-unchanged
|
unassume = update-index --no-assume-unchanged
|
||||||
assumed = "!git ls-files -v | grep ^h | cut -c 3-"
|
assumed = "!git ls-files -v | grep ^h | cut -c 3-"
|
||||||
|
|
||||||
[filter "lfs"]
|
[filter "lfs"]
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
required = true
|
required = true
|
||||||
|
|
Loading…
Reference in a new issue