| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- [user]
- name = raylu
- email = lurayl@gmail.com
- signingkey = BA778D8B
- [color]
- ui = true
- interactive = true
- [color "status"]
- added = green bold
- changed = red bold
- untracked = cyan
- [color "diff"]
- meta = cyan bold
- old = red bold
- new = green bold
- frag = blue
- commit = yellow bold
- [color "branch"]
- current = green bold
- local = bold
- remote = red bold
- [color "grep"]
- match = cyan
- [pager]
- color = true
- [core]
- editor = vim
- pager = less -FXRS -x4
- [merge]
- defaultToUpstream = true
- [rebase]
- autosquash = true
- [rerere]
- enabled = true
- [push]
- default = upstream
- [diff]
- tool = vimdiff
- [alias]
- short = log --graph --pretty=format:'%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --patience
- ff = merge --ff-only
- put = !git-push && git-push --tags
|