-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
51 lines (48 loc) · 1.97 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
[push]
default = simple
autoSetupRemote = true
[credential]
helper = store
[user]
name = Nicholas Dille
[init]
defaultBranch = main
[includeif "hasconfig:remote.*.url:https://github.com/nicholasdille/*"]
path = .gitconfig-private
[includeif "hasconfig:remote.*.url:https://github.com/uniget-org/*"]
path = .gitconfig-private
[includeIf "hasconfig:remote.*.url:https://gitlab.com/nicholasdille/**"]
path = .gitconfig-private
[includeIf "hasconfig:remote.*.url:https://gitlab.com/uniget-org/**"]
path = .gitconfig-private
[includeIf "hasconfig:remote.*.url:https://gitlab.haufedev.systems/**"]
path = .gitconfig-haufe
[includeIf "hasconfig:remote.*.url:https://dillen@gitlab.haufedev.systems/**"]
path = .gitconfig-haufe
[includeIf "hasconfig:remote.*.url:https://gitlab.com/dos-devinfra/**"]
path = .gitconfig-haufe
[credential "https://github.com/nicholasdille"]
helper = "!pp git-github-nicholasdille"
useHttpPath = true
[credential "https://github.com/uniget-org"]
helper = "!pp git-github-uniget"
useHttpPath = true
[credential "https://gitlab.com/uniget-org"]
helper = "!pp git-gitlab-uniget"
useHttpPath = true
[credential "https://gitlab.com/dos-devinfra"]
helper = "!ph git-gitlabcom-dos"
useHttpPath = true
[credential "https://gitlab.com/uniget-org"]
helper = "!pp git-gitlab-uniget-cli"
useHttpPath = true
[credential "https://gitlab.com"]
helper = "!pp git-gitlabcom"
useHttpPath = true
[credential "https://gitlab.haufedev.systems"]
helper = "!ph git-gitlab-live"
[credential "https://gitlab-qa.haufedev.systems"]
helper = "!ph git-gitlab-qa"
[alias]
lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit"
lgg = "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"