-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
44 lines (38 loc) · 963 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
38
39
40
41
42
43
44
[user]
name = Metin Amiroff
email = [email protected]
[core]
excludesfile = /Users/amiroff/.gitignore_global
editor = subl -n -w
autocrlf = input
quotepath = false
whitespace = cr-at-eol
[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
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = true
[alias]
co = checkout
ba = branch -a
gca = commit -v -a
br = branch
ci = commit
unstage = reset HEAD --
last = log -1 HEAD
st = status -sb
pom = push origin master
l = log --graph --pretty=format:'%C(yellow)%h%Creset%C(blue)%d%Creset %C(white bold)%s%Creset %C(white dim)(by %an %ar)%Creset'
ll = !git l --all
serve = daemon --reuseaddr --verbose --base-path=.
[push]
default = current
[diff]
algorithm = patience