-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
46 lines (43 loc) · 1.13 KB
/
.gitconfig
File metadata and controls
46 lines (43 loc) · 1.13 KB
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
38
39
40
41
42
43
44
45
46
[user]
name = Levent YALCIN
email = leventyalcin@gmail.com
[core]
editor = vim
excludesfile = /Users/leoman/.gitignore_global
autocrlf = false
[alias]
br = branch
st = status
sh = show
sb = show-branch
rema = rebase origin/master master
c = commit -m
ci = commit
cm = commit
cmt = commit -v
coma = commit -a -v
cma = commit -a -v
co = checkout
cl = clone
dc = diff --cached
df = diff
d = diff -C
ds = diff -C --stat
dsp = diff -C --stat -p
dt = difftool
dw = diff -C --color-words
up = pull --rebase
lg = log --graph --all --color --pretty='%x09%h %cn%x09%s %Cred%d'
lo = log --graph --all --color --pretty='%x09%h %ad %cn%x09%s %Cred%d' --date=short
ls = ls-files
l = log
m = checkout master
mt = mergetool
ituja = log --patch -S
alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true