-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
53 lines (47 loc) · 1.1 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
52
53
[user]
name = Zahan Malkani
email = [email protected]
[core]
editor = code --wait
whitespace = trailing-space,cr-at-eol,tab-in-indent
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[alias]
st = status
co = checkout
plus = commit -a --amend --no-edit
cdiffed = show --pretty='format:' --name-only
cshow = log -1 --pretty=medium
rpull = pull --rebase
ffpull = pull --ff-only --no-stat
b = branch -v
up = submodule update
ssl = log --graph --oneline --decorate --all
[push]
default = simple
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[merge]
tool = Kaleidoscope
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[difftool]
prompt = false
[mergetool]
prompt = false
[diff]
tool = Kaleidoscope
[pull]
ff = only
# added by Meta
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true