forked from jonparis/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
37 lines (37 loc) · 954 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
28
29
30
31
32
33
34
35
36
37
[alias]
lc = log ORIG_HEAD.. --stat --no-merges
cp = cherry-pick
ci = commit
st = status
co = checkout
rb = rebase
rba = rebase --abort
rbc = rebase --continue
log = log --decorate
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --all --graph --decorate --pretty=oneline --abbrev-commit
svnci = svn dcommit
svnup = svn fetch
svnst = log trunk..
br = !sh -c 'git branch --color $* | grep -v " z-"' -
diffn = diff --no-ext-diff
resolve = !git-resolve
wtf = !git-wtf
[user]
name = YOUR NAME
email = [email protected]
[color]
ui = auto
diff = auto
status = auto
branch = auto
[merge]
tool = xxdiff
[core]
whitespace = -trailing-space
autocrlf = input
[push]
default = matching
[diff]
external = ~/tools/opendiff-git.sh
EDITOR = mate