-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
51 lines (48 loc) · 1.12 KB
/
.gitconfig
File metadata and controls
51 lines (48 loc) · 1.12 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
[user]
name = Norbert Chmiel
email = norbertchmiel.it@gmail.com
[core]
editor = vim
pager = less
excludesFile = /home/norbert/.gitignore
[url "git@github.com:"]
insetadOf = https://github.com/
[diff]
tool = vimdiff
[difftool]
prompt = false
[safe]
directory = /opt/flutter
[push]
autoSetupRemote = true
followTags = true
default = upstream
[alias]
root = rev-parse --show-toplevel
start = "!f() { \
git checkout -b \"$1\"; \
}; f"
back = "checkout -"
master = "!git checkout master && git pull -a"
main = "!git checkout main && git pull -a"
[merge]
tool = vimdiff
[rerere]
enabled = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[branch]
sort = -committerdate
[includeIf "gitdir:/home/norbert/Work/Ari10/"]
path = /home/norbert/Work/Ari10/.gitconfig
[includeIf "gitdir:/home/norbert/Work/Tequipy/Repos"]
path = /home/norbert/Work/Tequipy/.gitconfig
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential