-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
53 lines (46 loc) · 1.51 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
[alias]
undo = reset --soft HEAD^
# via: https://git-scm.com/docs/git-reset#git-reset-emgitresetemltmodegtltcommitgt
stash-all = stash save --include-untracked
# via: https://git-scm.com/docs/git-stash
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
# via: https://medium.com/@payload.dd/thanks-for-the-git-st-i-will-use-this-4da5839a21a4
wip = for-each-ref --sort='authordate:iso8601' --format=' %(color:green)%(authordate:relative)%09%(color:white)%(refname:short)' refs/heads
# via: https://carolynvanslyck.com/blog/2020/12/git-wip/
[status]
showUntrackedFiles = all
# via: https://git-scm.com/docs/git-config#git-config-statusshowUntrackedFiles
[core]
excludesfile = /Users/ad0502/.gitignore_global
pager = diff-so-fancy | less --tabs=4 -RFX
compression = 0
ignorecase = false
[merge]
tool = kdiff3
[mergetool]
keepBackup = false
[user]
name = Faiz Mokhtar
email = [email protected]
[push]
default = current
[http]
cookiefile = /Users/faizmokhtar/.gitcookies
lowSpeedLimit = 5
lowSpeedTime = 10000
postBuffer = 500M
maxRequestBuffer = 100M
[fetch]
prune = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
# This next lines include Netlify's Git Credential Helper configuration in your Git configuration.
[include]
path = /Users/faizmokhtar/.netlify/helper/git-config
[https]
postBuffer = 1048576000
[init]
defaultBranch = main