summaryrefslogtreecommitdiff
path: root/dot_config/git/config
blob: 07c5592274c3b0edf10bbcc5af782e8b7687e6f4 (plain) (blame)
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
63
64
65
66
67
68
69
70
71
72
73
74
[alias]
    aa = add -A
    ap = add -p
    bd = branch -D
    cs = commit --verbose --gpg-sign
    ci = commit --verbose
    co = checkout
    cb = checkout -b
    cp = commit --patch
    dc = diff --cached
    hr = reset --hard HEAD
    last = log -1 --stat
    lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue<%an>%Creset' --abbrev-commit --date=relative --all
    pf = push --force
    st = status
    stat = diff --stat
[apply]
    whitespace = warn
[color]
    ui = true
[core]
    filemode = false
    trustctime = false
    whitespace = blank-at-eol,space-before-tab,tab-in-indent,tabwidth=4
[credential]
    helper = cache --timeout=3600
[help]
    autocorrect = 1
[init]
	defaultBranch = main
[merge]
    tool = vimdiff
[mergetool]
    keepbackup = false
    keeptemporaries = false
    prompt = false
[pager]
    stat = false
[pull]
    rebase = true
[push]
    default = simple
[rebase]
	autoSquash = true
[sendemail]
    from = toast@toast.cafe
    smtpencryption = tls
    smtpserver = smtp.migadu.com
    smtpserverport = 465
    smtpuser = toast@toast.cafe
[status]
    branch = true
    short = true
[user]
    email = toast@toast.cafe
    name = Chloe Kudryavtsev

[url "git@github.com:CosmicToast/"]
    insteadOf = "st:"

[url "https://github.com/"]
    insteadOf = "gh:"

[url "git@gitlab.com:SpaceToast/"]
    insteadOf = "lst:"

[url "https://gitlab.com/"]
    insteadOf = "gl:"

[filter "lfs"]
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process
    required = true
    clean = git-lfs clean -- %f