-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
65 lines (51 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
[user]
name = Omar Essaid
email = [email protected]
username = omar.essaid
[commit]
gpgsign = false
[gpg]
program = /usr/bin/gpg
[alias]
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
lg3 = log --graph --abbrev-commit --decorate=no --date=format:'%Y-%m-%d %H:%I:%S' --format=format:'%C(03)%>|(26)%h%C(reset) %C(04)%ad%C(reset) %C(green)%<(16,trunc)%an%C(reset) %C(bold 1)%d%C(reset) %C(bold 0)%>|(1)%s%C(reset)' --all
lg4 = log --graph --abbrev-commit --decorate --date=format:'%Y-%m-%d %H:%I:%S' --format=format:'%C(bold blue)%h%C(reset) - %C(white)%s%C(reset) %C(dim white) - %C(dim white)%ar%C(reset) - %an%C(reset)%C(bold yellow)%d%C(reset)' --all
lg = !"git lg4"
st = "status -s"
co = checkout
fa = fetch --all --prune
pa = pull --all
ba = branch -v --all
info = !"onefetch --no-art"
[core]
pager = delta
excludesfile = /home/oessaid/.gitignore_global
editor = nvim
[interactive]
diffFilter = delta --color-only
[delta]
syntax-theme = gruvbox-dark
side-by-side = true
line-numbers = true
navigate = true
light = false
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[pull]
ff = only
[push]
autoSetupRemote = true
[init]
defaultBranch = main
[submodule]
recurse = true
[url "[email protected]:"]
insteadof = https://gitlab.helsing-dev.ai/
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true