-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
57 lines (57 loc) · 1.19 KB
/
.gitconfig
File metadata and controls
57 lines (57 loc) · 1.19 KB
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
[core]
pager = less -+FX
ignorecase = false
quotepath = false
[user]
email = tga@space55.xyz
name = tga
[alias]
root = rev-parse --show-toplevel
file = log --follow -p --
slog = log --oneline
dlog = log -p
commitf = commit --amend --no-edit
uncommit = reset --soft HEAD~1
conflicts = ! git --no-pager diff --name-only --diff-filter=U
bdiff = ! git --no-pager diff --name-only
prev = checkout HEAD~1
next = ! git log --reverse --pretty=%H master | grep -A 1 $(git rev-parse HEAD) | tail -n1 | xargs git checkout
pushall = ! git remote | xargs -L1 git push --all
open = ! git remote get-url origin | xargs open
[diff]
algorithm = histogram
mnemonicPrefix = true
renames = true
[push]
default = simple
autoSetupRemote = true
followTags = true
[fetch]
prune = true
pruneTags = true
all = true
[credential]
helper = store
[pull]
rebase = true
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
[pager]
branch = false
[branch]
sort = -committerdate
[web]
browser = open
[http]
postBuffer = 524288000
[init]
defaultBranch = main
[column]
ui = auto
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true