-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
51 lines (51 loc) · 1.43 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[user]
name = Qays H. Poonawala
email = [email protected]
signingkey = 774FC477
[color]
ui = auto
[push]
default = simple
[alias]
dag = log --graph --format='format:%C(yellow)%h%C(reset) %C(blue)\"%an\" <%ae>%C(reset) %C(magenta)%cr%C(reset)%C(auto)%d%C(reset)%n%s' --date-order
br = branch
brav = branch -av
st = status
ci = commit
cim = commit -m
cia = commit --amend --no-edit
ciae = commit --amend
co = checkout
upstream = branch --set-upstream-to=origin/master
ru = remote update
llog = log --oneline @{upstream}..HEAD
llp = log -p @{upstream}..HEAD
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[rerere]
enabled = true
[rebase]
autosquash = true
[sendemail]
[core]
pager = less -FMRiX
excludesfile = /Users/qayshp/.gitignore_global
[diff]
tool = vimdiff
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[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
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true