You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
636 B
49 lines
636 B
4 years ago
|
[alias]
|
||
|
st = status
|
||
|
ci = commit
|
||
|
br = branch
|
||
|
co = checkout
|
||
|
df = diff
|
||
|
l = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
|
||
|
ll = log --stat
|
||
|
|
||
|
[merge]
|
||
|
tool = vimdiff
|
||
|
|
||
|
[core]
|
||
|
excludesfile = ~/.gitignore
|
||
|
editor = vim
|
||
|
|
||
|
[color]
|
||
|
branch = auto
|
||
|
diff = auto
|
||
|
status = auto
|
||
|
|
||
|
[color "branch"]
|
||
|
current = yellow reverse
|
||
|
local = yellow
|
||
|
remote = green
|
||
|
|
||
|
[color "diff"]
|
||
|
meta = yellow bold
|
||
|
frag = magenta bold
|
||
|
old = red bold
|
||
|
new = green bold
|
||
|
|
||
|
[color "status"]
|
||
|
added = yellow
|
||
|
changed = green
|
||
|
untracked = cyan
|
||
|
|
||
|
[push]
|
||
|
default = matching
|
||
|
|
||
|
[credential]
|
||
|
helper = store
|
||
|
|
||
|
[user]
|
||
|
name =
|
||
|
email =
|
||
|
|
||
|
|