-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
62 lines (48 loc) · 1.12 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
54
55
56
57
58
59
60
61
62
[user]
name = Tsvetomir Tsonev\n
email = [email protected]
signingkey = 7244520B
[core]
editor = vim
autocrlf = false
whitespace = cr-at-eol
[color]
ui = true
[format]
pretty = %Cblue%h%Creset %Cgreen[%cr]%Creset (%an) %s
[diff]
tool = meld
compactionHeuristic = true
[difftool]
prompt = false
[difftool "meld"]
cmd = meld $LOCAL $REMOTE
[merge]
tool = meld
[mergetool]
prompt = false
[mergetool "meld"]
cmd = ~/bin/git_merge_meld $LOCAL $BASE $REMOTE $MERGED
trustExitCode = false
[github]
user = tsvetomir
token = [SECRET]
[alias]
a = add
c = commit -m
co = checkout
d = diff
dc = diff --cached
dt = difftool
dtc = difftool --cached
l = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen%an%Creset (%cr)' --abbrev-commit --date=relative
pr = "!git fetch --prune && git rebase --preserve-merges `git rev-parse --abbrev-ref --symbolic-full-name @{u}`"
s = status -sb
[branch]
autosetuprebase = always
[push]
default = tracking
[rebase]
autoSquash = true
[rerere]
enabled = true