配置文件路径
- mac下路径为/Users/xxx/.gitconfig
配置文件内容
[user]
name = xxx
email = xxx@csdn.net
[alias]
st = status
s = status
co = checkout
ci = commit
cm = commit -m
pl = pull
ps = push
br = branch
re = rebase
df = diff
a = add .
unstage = reset HEAD
last = log -l
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
lt = log --color --tags --simplify-by-decoration --pretty=format:'%Cred%ai - %Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[http]
postBuffer = 1048576000
[core]
excludesfile = /Users/xxx/.gitignore_global
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[filesystem "JetBrains s.r.o.|11.0.10|/dev/disk3s5"]
timestampResolution = 4000 nanoseconds
minRacyThreshold = 0 nanoseconds