-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
34 lines (33 loc) · 1.03 KB
/
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
28
29
30
31
32
33
34
[alias]
st = status
ci = commit
br = branch
co = checkout
su = submodule
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
lds = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
ld = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
la = "!git config -l | grep alias | cut -c 7-"
ctags = !.git/hooks/ctags
sha = log --format=format:%H
[color]
ui = true
[credential]
helper = osxkeychain
[push]
default = simple
[user]
name = Jeff Federman
email = [email protected] # personal
# email = [email protected] # gusto
[core]
# excludesfile = /Users/jefffederman/.gitignore # personal
excludesfile = /Users/jeff.federman/.gitignore # gusto
editor = vim
[heroku]
# account = personal # personal
[filter "trimWhitespace"]
clean = git-stripspace
[init]
templatedir = ~/.git_template