-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
27 lines (26 loc) · 990 Bytes
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[alias]
co = checkout
br = branch
ci = commit
st = status
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s%Cgreen (%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lg-nomerge = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s%Cgreen (%cr) %C(bold yellow)<%an>%Creset' --abbrev-commit --date=relative --no-merges
lg-files = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s%Cgreen (%cr) %C(bold yellow)<%an>%Creset' --abbrev-commit --date=relative --name-only
outgoing = log @{u}..
taghistory = log --tags --simplify-by-decoration --pretty='format:%ci %d'
reflogdate = reflog --date=iso
[color]
ui = true
diff = auto
branch = auto
status = auto
[user]
name = Bill Oley
email = bill.oley@gmail.com
[core]
excludesfile = /Users/wwoley/.gitignore_global
editor = vim
[push]
default = simple
[credential]
helper = store