-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy path.gitconfig
43 lines (35 loc) · 856 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
[user]
name = Ingo Bürk
email = [email protected]
useConfigOnly = true
[alias]
a = add --all
c = commit
st = status
co = checkout
up = pull --rebase=merges
g = grep --break --heading --line-number
fa = fetch --all
p = push
pf = push --force-with-lease
rbc = rebase --continue
mt = mergetool
copy-diff = !git diff | xclip -selection c
paste-diff = !xclip -selection c -o | git apply -3
[color]
diff = auto
status = auto
branch = auto
[push]
default = simple
[pull]
ff = only
[merge]
tool = vimdiff
[mergetool]
keepBackup = false
[gui]
fontui = -family Hack -size 11 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family Hack -size 11 -weight normal -slant roman -underline 0 -overstrike 0
[init]
defaultBranch = master