-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
42 lines (42 loc) · 1.11 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
[user]
name = Andreas Ntaflos
email = [email protected]
[push]
default = simple
[http]
sslVerify = true
; [core]
; askpass = /usr/bin/ksshaskpass
[alias]
branches = branch -a
tags = tag
stashes = stash list
unstage = reset -q HEAD --
discard = checkout --
uncommit = reset --mixed HEAD~
amend = commit --amend
graph = log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset• %<(75,trunc)%s (%cN, %cr) %Cred%d' --date-order
precommit = diff --cached --diff-algorithm=minimal -w
remotes = remote -v
sed = ! git grep -z --full-name -l '.' | xargs -0 sed -r -i -e
[diff]
compactionHeuristic = true
[pager]
log = ~/bin/diff-highlight | less -S
show = ~/bin/diff-highlight | less -S
diff = ~/bin/diff-highlight | less -S
[interactive]
diffFilter = diff-highlight
[commit]
verbose = true
[credential]
helper = cache --timeout=3600
[color]
ui = auto
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true