-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
30 lines (25 loc) · 898 Bytes
/
gitconfig
File metadata and controls
30 lines (25 loc) · 898 Bytes
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
[alias]
st = status
co = checkout
ci = commit
ic = commit
lg = log --format='%Cgreen%h %Cred%cr %Creset%s %C(cyan)%cn'
lg2 = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
review = send-email --to patches@mailman.rd.tandberg.com --compose
loglocal = log --abbrev-commit --format='%Cgreen* %C(yellow)%h %Cblue%aN %Cgreen%ar %Creset%s' FETCH_HEAD..
logremote = "!f() { git fetch&&\
git log --abbrev-commit --format='%Cred* %C(yellow)%h %Cblue%aN %Cgreen%ar %Creset%s' ..FETCH_HEAD;\
}; f"
changes = "!git-changes"
[diff]
algorithm = patience
[color]
ui = auto
[user]
name = David Buchmann
email = david.buchmann@gmail.com
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore_global
[push]
default=current