gitconfig: Re-ordered things
This commit is contained in:
parent
b031b0e492
commit
e6cd40103c
67
.gitconfig
67
.gitconfig
|
@ -1,30 +1,3 @@
|
||||||
[include]
|
|
||||||
path = ~/.gitconfig-local
|
|
||||||
|
|
||||||
[color]
|
|
||||||
ui = true
|
|
||||||
|
|
||||||
[color "branch"]
|
|
||||||
current = yellow bold
|
|
||||||
local = green bold
|
|
||||||
remote = cyan bold
|
|
||||||
|
|
||||||
[color "diff"]
|
|
||||||
meta = yellow bold
|
|
||||||
frag = magenta bold
|
|
||||||
old = red bold
|
|
||||||
new = green bold
|
|
||||||
whitespace = red reverse
|
|
||||||
|
|
||||||
[color "status"]
|
|
||||||
added = green bold
|
|
||||||
changed = yellow bold
|
|
||||||
untracked = red bold
|
|
||||||
|
|
||||||
[branch]
|
|
||||||
autosetupmerge = true
|
|
||||||
autosetuprebase = always
|
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
aa = add --all
|
aa = add --all
|
||||||
ap = add --patch
|
ap = add --patch
|
||||||
|
@ -88,35 +61,43 @@
|
||||||
mod = !git merge-origin-develop
|
mod = !git merge-origin-develop
|
||||||
mom = !git merge-origin-master
|
mom = !git merge-origin-master
|
||||||
|
|
||||||
|
[branch]
|
||||||
|
autosetupmerge = true
|
||||||
|
autosetuprebase = always
|
||||||
|
|
||||||
|
[color]
|
||||||
|
ui = true
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
# A global .gitignore file.
|
# A global .gitignore file.
|
||||||
excludesFile = ~/.gitignore-global
|
excludesFile = ~/.gitignore-global
|
||||||
|
|
||||||
[grep]
|
[diff]
|
||||||
# Show the line numbers in the output.
|
tool = vimdiff
|
||||||
lineNumber = true
|
|
||||||
#
|
|
||||||
patternType = extended
|
|
||||||
|
|
||||||
[fetch]
|
[fetch]
|
||||||
# Always prune when fetching (and pulling).
|
# Always prune when fetching (and pulling).
|
||||||
prune = 1
|
prune = 1
|
||||||
|
|
||||||
|
[gitsh]
|
||||||
|
nogreeting = true
|
||||||
|
|
||||||
|
[grep]
|
||||||
|
# Show the line numbers in the output.
|
||||||
|
lineNumber = true
|
||||||
|
|
||||||
[help]
|
[help]
|
||||||
autocorrect = 1
|
autocorrect = 1
|
||||||
# Open Git help pages in a browser as HTML.
|
# Open Git help pages in a browser as HTML.
|
||||||
format = web
|
format = web
|
||||||
|
|
||||||
[rerere]
|
[include]
|
||||||
# Store and re-use manual conflict resolution changes.
|
path = ~/.gitconfig-local
|
||||||
enabled = 1
|
|
||||||
|
|
||||||
[gitsh]
|
|
||||||
nogreeting = true
|
|
||||||
|
|
||||||
[diff]
|
|
||||||
tool = vimdiff
|
|
||||||
|
|
||||||
[rebase]
|
[rebase]
|
||||||
autosquash = true
|
autosquash = true
|
||||||
autostash = true
|
autostash = true
|
||||||
|
|
||||||
|
[rerere]
|
||||||
|
# Store and re-use manual conflict resolution changes.
|
||||||
|
enabled = 1
|
||||||
|
|
Loading…
Reference in a new issue