-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig
More file actions
54 lines (54 loc) · 1.11 KB
/
gitconfig
File metadata and controls
54 lines (54 loc) · 1.11 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
52
53
54
[color]
diff = auto
status = auto
branch = auto
[user]
name = Arthur Nogueira Neves
email = [email protected]
signingkey = 1E433E17
[alias]
co = checkout
ci = commit
fetchco = "!f() { git fetch origin \"$1\":\"$1\" && git checkout \"$1\"; }; f"
[core]
excludesfile = ~/.gitignore
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
editor = vim
attributesfile = ~/.gitattributes
# [diff "json"]
# textconv = python -m json.tool
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[github]
user = arthurnn
[push]
default = simple
[pull]
ff = only
rebase = false
[commit]
gpgsign = false
[init]
defaultBranch = main
[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
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true